? gdb.diff Index: Makefile.in =================================================================== RCS file: /cvsroot/src/external/gpl3/gdb/dist/gdb/Makefile.in,v retrieving revision 1.1.1.5 diff -u -u -r1.1.1.5 Makefile.in --- Makefile.in 3 Feb 2016 02:59:19 -0000 1.1.1.5 +++ Makefile.in 23 Feb 2016 22:10:51 -0000 @@ -1866,44 +1866,44 @@ # Strictly speaking c-exp.c should therefore depend on # Makefile.in, but that was a pretty big annoyance. -.SUFFIXES: .y .l -.y.c: - rm -f $@ $@.tmp - $(SHELL) $(YLWRAP) $< y.tab.c $@ -- $(YACC) $(YFLAGS) && mv $@ $@.tmp \ - || (rm -f $@; false) - sed -e '/extern.*malloc/d' \ - -e '/extern.*realloc/d' \ - -e '/extern.*free/d' \ - -e '/include.*malloc.h/d' \ - -e 's/\([^x]\)malloc/\1xmalloc/g' \ - -e 's/\([^x]\)realloc/\1xrealloc/g' \ - -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \ - -e 's/\([ \t;,(]\)free$$/\1xfree/g' \ - -e '/^#line.*y.tab.c/d' \ - < $@.tmp > $@ - rm -f $@.tmp -.l.c: - if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \ - $(FLEX) -o$@ $< && \ - rm -f $@.new && \ - sed -e '/extern.*malloc/d' \ - -e '/extern.*realloc/d' \ - -e '/extern.*free/d' \ - -e '/include.*malloc.h/d' \ - -e 's/\([^x]\)malloc/\1xmalloc/g' \ - -e 's/\([^x]\)realloc/\1xrealloc/g' \ - -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \ - -e 's/\([ \t;,(]\)free$$/\1xfree/g' \ - -e 's/yy_flex_xrealloc/yyxrealloc/g' \ - < $@ > $@.new && \ - rm -f $@ && \ - mv $@.new $@; \ - elif [ -f $@ ]; then \ - echo "Warning: $*.c older than $*.l and flex not available."; \ - else \ - echo "$@ missing and flex not available."; \ - false; \ - fi +#.SUFFIXES: .y .l +#.y.c: +# rm -f $@ $@.tmp +# $(SHELL) $(YLWRAP) $< y.tab.c $@ -- $(YACC) $(YFLAGS) && mv $@ $@.tmp \ +# || (rm -f $@; false) +# sed -e '/extern.*malloc/d' \ +# -e '/extern.*realloc/d' \ +# -e '/extern.*free/d' \ +# -e '/include.*malloc.h/d' \ +# -e 's/\([^x]\)malloc/\1xmalloc/g' \ +# -e 's/\([^x]\)realloc/\1xrealloc/g' \ +# -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \ +# -e 's/\([ \t;,(]\)free$$/\1xfree/g' \ +# -e '/^#line.*y.tab.c/d' \ +# < $@.tmp > $@ +# rm -f $@.tmp +#.l.c: +# if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \ +# $(FLEX) -o$@ $< && \ +# rm -f $@.new && \ +# sed -e '/extern.*malloc/d' \ +# -e '/extern.*realloc/d' \ +# -e '/extern.*free/d' \ +# -e '/include.*malloc.h/d' \ +# -e 's/\([^x]\)malloc/\1xmalloc/g' \ +# -e 's/\([^x]\)realloc/\1xrealloc/g' \ +# -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \ +# -e 's/\([ \t;,(]\)free$$/\1xfree/g' \ +# -e 's/yy_flex_xrealloc/yyxrealloc/g' \ +# < $@ > $@.new && \ +# rm -f $@ && \ +# mv $@.new $@; \ +# elif [ -f $@ ]; then \ +# echo "Warning: $*.c older than $*.l and flex not available."; \ +# else \ +# echo "$@ missing and flex not available."; \ +# false; \ +# fi .PRECIOUS: ada-lex.c