From 2ce9cd414052d0856964896302da50becb4691a2 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Thu, 1 Mar 2001 04:04:26 +0000 Subject: [PATCH] Sam TH: Remove gcc-specific cruft from the Makefile -- this hurts portability! This closes SF tracker patch #403584, and probably more platform-specific build process bugs than I care to think about. --- expat/lib/Makefile.in | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/expat/lib/Makefile.in b/expat/lib/Makefile.in index 85635edd..941b277b 100644 --- a/expat/lib/Makefile.in +++ b/expat/lib/Makefile.in @@ -107,24 +107,10 @@ all: $(LIBRARY) .PHONY: all clean distclean maintainer-clean .c.o: - @echo '$(COMPILE) -c $<'; \ - $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $< - @-cp .deps/$(*F).pp .deps/$(*F).P; \ - tr ' ' '\012' < .deps/$(*F).pp \ - | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ - >> .deps/$(*F).P; \ - rm .deps/$(*F).pp + $(COMPILE) -c $< .c.lo: - @echo '$(LTCOMPILE) -c $<'; \ - test -d .deps || mkdir .deps ; \ - $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $< - @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \ - < .deps/$(*F).pp > .deps/$(*F).P; \ - tr ' ' '\012' < .deps/$(*F).pp \ - | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ - >> .deps/$(*F).P; \ - rm -f .deps/$(*F).pp + $(LTCOMPILE) -c $< Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \