diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-22 21:51:32 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-22 21:51:32 +0000 |
commit | 1162b3a61f635dd1503ec8f9bfb58a30b308a5bb (patch) | |
tree | cd2d3c83b0a2effaa08ece659409c8cc6640abf0 | |
parent | aab7bd19635a0029e169234abd00a50f99b987da (diff) | |
download | gcc-1162b3a61f635dd1503ec8f9bfb58a30b308a5bb.zip gcc-1162b3a61f635dd1503ec8f9bfb58a30b308a5bb.tar.gz gcc-1162b3a61f635dd1503ec8f9bfb58a30b308a5bb.tar.bz2 |
(fix-header, fix-header.o): Renamed from patch-header*.
(stmp-fixproto, mostlyclean): Rename references to them.
From-SVN: r5871
-rw-r--r-- | gcc/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d30591f..ed2da02 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1579,13 +1579,13 @@ xsys-protos.h: $(srcdir)/sys-protos.h deduced.h gen-protos Makefile | ./gen-protos >xsys-protos.h rm -rf fixtmp.c -patch-header: patch-header.o scan-decls.o scan.o xsys-protos.h $(HOST_OBSTACK) - $(HOST_CC) -o patch-header patch-header.o scan-decls.o scan.o $(HOST_OBSTACK) +fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_OBSTACK) + $(HOST_CC) -o fix-header fix-header.o scan-decls.o scan.o $(HOST_OBSTACK) -patch-header.o: xsys-protos.h +fix-header.o: xsys-protos.h # stmp-headers is to make sure fixincludes has already finished. -stmp-fixproto: patch-header xsys-protos.h fixproto stmp-headers +stmp-fixproto: fix-header xsys-protos.h fixproto stmp-headers CPP="$(GCC_FOR_TARGET) -E"; export CPP; \ ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR) touch stmp-fixproto @@ -1658,7 +1658,7 @@ mostlyclean: bytecode.mostlyclean -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s # Delete files generated for fixproto - -rm -rf patch-header xsys-protos.h deduced.h tmp-deduced.h \ + -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \ gen-protos fixproto.list fixtmp.* # Delete unwanted output files from TeX. -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg |