diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-22 22:00:50 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-22 22:00:50 +0000 |
commit | a9ec36e3a37dea12d2e807fcf9c4375473857267 (patch) | |
tree | 5992fdb7472e7a2244b970b424b40ba31673e35f /gcc | |
parent | 0becdd8ea6f4b4047bb022791f84244da8979520 (diff) | |
download | gcc-a9ec36e3a37dea12d2e807fcf9c4375473857267.zip gcc-a9ec36e3a37dea12d2e807fcf9c4375473857267.tar.gz gcc-a9ec36e3a37dea12d2e807fcf9c4375473857267.tar.bz2 |
(bi-lexer.o, bi-parser.o): Use ALL_CFLAGS.
From-SVN: r5420
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 7ba686c..815a9ef 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1286,12 +1286,12 @@ bi-run.o: $(srcdir)/bi-run.c $(srcdir)/bi-run.h $(srcdir)/bc-typecd.h bc-opname. bi-parser.c: $(srcdir)/bi-parser.y $(srcdir)/bi-parser.h bi-parser.o: $(srcdir)/bi-parser.c $(srcdir)/bi-defs.h - $(CC) $(CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $< + $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $< bi-lexer.c: $(srcdir)/bi-lexer.l $(srcdir)/bi-parser.h bi-lexer.o: bi-lexer.c bi-parser.h - $(CC) $(CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $< + $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $< bc-arity.h: $(srcdir)/bytecode.def bi-arity -rm -f $@ |