diff options
author | Roland McGrath <roland@gnu.org> | 2004-10-23 20:10:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-10-23 20:10:40 +0000 |
commit | 220addf73a65c84f6a5992c4e44f49598af42ffb (patch) | |
tree | 0e172e1ebe67f0abd2f63c0fa70b817d1c779e90 | |
parent | 17a1031933362b1c917e16f297811068b35a896c (diff) | |
download | glibc-220addf73a65c84f6a5992c4e44f49598af42ffb.zip glibc-220addf73a65c84f6a5992c4e44f49598af42ffb.tar.gz glibc-220addf73a65c84f6a5992c4e44f49598af42ffb.tar.bz2 |
2004-10-22 Roland McGrath <roland@frob.com>
* Makefile (%.bz2, %.gz): Move these pattern rules ...
* Makerules: ... to here.
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | Makerules | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -299,9 +299,6 @@ $(foreach dir,$(dist-separate), ) endef -%.bz2: %; bzip2 -9vk $< -%.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@ - # Do `make dist dist-version=X.Y.Z' to make tar files of an older version. dist-version = $(version) @@ -1328,6 +1328,8 @@ FORCE: echo-headers: @echo $(headers) +%.bz2: %; bzip2 -9vk $< +%.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@ # Common cleaning targets. |