From: Jan-Benedict G. <jb...@us...> - 2004-09-24 10:05:03
|
Update of /cvsroot/linux-vax/toolchain/src/gcc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24561 Modified Files: Makefile.in Log Message: - This fixes the "type conflict for RETURN, ..., previously defined here" problem I noticed about a year ago. Index: Makefile.in =================================================================== RCS file: /cvsroot/linux-vax/toolchain/src/gcc/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile.in 17 Feb 2003 00:09:31 -0000 1.1.1.1 +++ Makefile.in 24 Sep 2004 10:04:42 -0000 1.2 @@ -1319,23 +1319,27 @@ # C language specific files. -c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \ - $(srcdir)/c-parse.h c-tree.h input.h flags.h system.h toplev.h +c-parse.o :$(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \ + c-tree.h input.h flags.h system.h toplev.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c -$(srcdir)/c-parse.h: $(srcdir)/c-parse.c -$(srcdir)/c-parse.c: $(srcdir)/c-parse.y - cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y -$(srcdir)/c-parse.y: c-parse.in - echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y - sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \ - -e "/^ifc$$/d" -e "/^end ifc$$/d" \ - $(srcdir)/c-parse.in >>tmp-c-parse.y - $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y + +#c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \ +# $(srcdir)/c-parse.h c-tree.h input.h flags.h system.h toplev.h +# $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c +#$(srcdir)/c-parse.h: $(srcdir)/c-parse.c +#$(srcdir)/c-parse.c: $(srcdir)/c-parse.y +# cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y +#$(srcdir)/c-parse.y: c-parse.in +# echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y +# sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \ +# -e "/^ifc$$/d" -e "/^end ifc$$/d" \ +# $(srcdir)/c-parse.in >>tmp-c-parse.y +# $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y -$(srcdir)/c-gperf.h: c-parse.gperf - gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \ - -k1,3,$$ $(srcdir)/c-parse.gperf >tmp-gperf.h - $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h +#$(srcdir)/c-gperf.h: c-parse.gperf +# gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \ +# -k1,3,$$ $(srcdir)/c-parse.gperf >tmp-gperf.h +# $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h flags.h \ output.h toplev.h |