diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-20 06:30:20 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-20 06:30:20 +0000 |
commit | 49b6e255d9b3f6e7fbf146046ab9913c53a6ec06 (patch) | |
tree | db0c2078d8f40927aa4419a297d14f2eabc2e58f /gcc | |
parent | b0b7b46ac256b48a1b85a831d68c4f4ff45b8c45 (diff) | |
download | gcc-49b6e255d9b3f6e7fbf146046ab9913c53a6ec06.zip gcc-49b6e255d9b3f6e7fbf146046ab9913c53a6ec06.tar.gz gcc-49b6e255d9b3f6e7fbf146046ab9913c53a6ec06.tar.bz2 |
(BISONFLAGS): Add -v.
(stmp-fixinc): Renamed from stmp-fixincludes.
From-SVN: r3498
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d1c13db..eadbf21 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -52,7 +52,7 @@ T_CPPFLAGS = CC = cc BISON = bison -BISONFLAGS = +BISONFLAGS = -v AR = ar OLDAR_FLAGS = qc AR_FLAGS = rc @@ -1268,7 +1268,7 @@ test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES) # stamp-* so that mostlyclean does not force the include directory to # be rebuilt. -stmp-headers: stmp-fixincludes $(USER_H) gvarargs.h gstdarg.h gstddef.h gsyslimits.h xlimits.h gfloat.h +stmp-headers: stmp-fixinc $(USER_H) gvarargs.h gstdarg.h gstddef.h gsyslimits.h xlimits.h gfloat.h # Copy in the headers provided with gcc. # The sed command gets just the last file name component; # this is necessary because VPATH could add a dirname. @@ -1310,7 +1310,7 @@ stmp-headers: stmp-fixincludes $(USER_H) gvarargs.h gstdarg.h gstddef.h gsyslimi touch stmp-headers # Build fixed copies of system files. -stmp-fixincludes: $(srcdir)/$(FIXINCLUDES) +stmp-fixinc: $(srcdir)/$(FIXINCLUDES) rm -rf include mkdir include if [ x$(FIXINCLUDES) != xMakefile.in ]; \ @@ -1323,7 +1323,7 @@ stmp-fixincludes: $(srcdir)/$(FIXINCLUDES) done; \ else true; \ fi - touch stmp-fixincludes + touch stmp-fixinc # Remake the info files. |