diff options
author | Roland McGrath <roland@redhat.com> | 1993-06-02 21:09:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-06-02 21:09:00 +0000 |
commit | 14f2b39dff8c4157fd18fb64989b23eed8ad73c6 (patch) | |
tree | 1532dcb3eacf7b9488d58a510058bc602b0b15a9 /GNUmakefile | |
parent | 9697738544405d409dede9e2dcce595a854e99be (diff) | |
download | gunmake-14f2b39dff8c4157fd18fb64989b23eed8ad73c6.tar.gz |
Formerly GNUmakefile.~103~
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 76ccf1d..9410d41 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -200,7 +200,7 @@ version := \ $(strip $(shell sed -e '/=/!d' -e 's/^.*"\(.*\)";$$/\1/' < version.c)) tarfiles := make make-doc tarfiles := $(addsuffix -$(version).tar,$(tarfiles)) -tarfiles := $(tarfiles:%=%.z) # no more compress $(tarfiles:%=%.Z) +tarfiles := $(tarfiles:%=%.gz) # no more compress $(tarfiles:%=%.Z) # Depend on default and doc so we don't ship anything that won't compile. dist: default info dvi tests tarfiles .PHONY: tarfiles @@ -237,7 +237,7 @@ rm -f make-$(version) endef %.Z: %; compress -c $< > $@ -%.z: %; gzip -9 -c $< > $@ +%.gz: %; gzip -9 -c -v $< > $@ make-doc-$(version).tar: README-doc COPYING make.dvi make.info make.info* $(make-tar) |