diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-06-02 11:41:51 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-06-02 11:41:51 +0000 |
commit | e7aba4cdb2501693a80763e45b6f7e5f28b28237 (patch) | |
tree | d65463a397b80ae0e4ed636ce12b0e9e179a8d7c /gcc | |
parent | c83857ff2821090c0b72ce622fb11efa3f686e80 (diff) | |
download | gcc-e7aba4cdb2501693a80763e45b6f7e5f28b28237.zip gcc-e7aba4cdb2501693a80763e45b6f7e5f28b28237.tar.gz gcc-e7aba4cdb2501693a80763e45b6f7e5f28b28237.tar.bz2 |
Makefile.in (c-options.c): Pass in $(AWK) to opts.sh.
* Makefile.in (c-options.c): Pass in $(AWK) to opts.sh.
(mostlyclean): Delete c-options.c and c-options.h.
From-SVN: r67326
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 16164f8..10d72fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (c-options.c): Pass in $(AWK) to opts.sh. + (mostlyclean): Delete c-options.c and c-options.h. + 2003-06-02 Neil Booth <neil@daikokuya.co.uk> * c-opts.c (CL_REJECT_NEGATIVE): New. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e1c18d3..fd20e97 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1321,7 +1321,7 @@ c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ $< $(OUTPUT_OPTION) @TARGET_SYSTEM_ROOT_DEFINE@ c-options.c: c.opt $(srcdir)/opts.sh - $(SHELL) $(srcdir)/opts.sh c-options.c c-options.h $(srcdir)/c.opt + AWK=$(AWK) $(SHELL) $(srcdir)/opts.sh c-options.c c-options.h $(srcdir)/c.opt c-options.h: c-options.c @true @@ -2783,7 +2783,7 @@ mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean -rm -f xlimits.h # Delete other built files. -rm -f xsys-protos.hT - -rm -f specs.h options.h gencheck.h + -rm -f specs.h options.h gencheck.h c-options.c c-options.h # Delete the stamp and temporary files. -rm -f s-* tmp-* stamp-* stmp-* -rm -f */stamp-* */tmp-* |