diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-26 22:27:20 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-26 22:27:20 +0000 |
commit | 4055b808f5c0ba445811a205d3b67c24299df4e1 (patch) | |
tree | c93dec10ee5b11ff3b3d9900bc1756c99f608306 | |
parent | 3285fe92de8bb0f2fe7892f753e186202967c0a2 (diff) | |
download | gcc-4055b808f5c0ba445811a205d3b67c24299df4e1.zip gcc-4055b808f5c0ba445811a205d3b67c24299df4e1.tar.gz gcc-4055b808f5c0ba445811a205d3b67c24299df4e1.tar.bz2 |
(gcc.xtar.z): Renamed from gcc.xtar.Z. Use gzip.
(dist): Depend on gcc.xtar.z.
(mostlyclean): Delete temp-gcc.xtar.z.
From-SVN: r4576
-rw-r--r-- | gcc/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index be02b3d..71ea260 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1444,7 +1444,7 @@ mostlyclean: -rm -f tmplibgcc* tmpcopy xlimits.h for name in $(LIB1FUNCS); do rm -f $${name}.c; done # Delete other temporary files. - -rm -f tmp-float.h tmp-gcc.xtar.Z + -rm -f tmp-float.h tmp-gcc.xtar.z -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s # Delete the stamp files. -rm -f stamp-* tmp-* @@ -1738,15 +1738,15 @@ TAGS: force rmdir temp # Create the distribution tar file. -#dist: gcc-$(version).tar.Z -dist: gcc.xtar.Z +#dist: gcc-$(version).tar.z +dist: gcc.xtar.z -gcc.xtar.Z: gcc.xtar - compress < gcc.xtar > tmp-gcc.xtar.Z - mv tmp-gcc.xtar.Z gcc.xtar.Z +gcc.xtar.z: gcc.xtar + gzip < gcc.xtar > tmp-gcc.xtar.z + mv tmp-gcc.xtar.z gcc.xtar.z -#gcc-$(version).tar.Z: gcc-$(version).tar -# compress < gcc-$(version).tar > gcc-$(version).tar.Z +#gcc-$(version).tar.z: gcc-$(version).tar +# gzip < gcc-$(version).tar > gcc-$(version).tar.z #gcc-$(version).tar: gcc.xtar: distdir |