diff --git a/expat/Changes b/expat/Changes index 40b7bb5a..aec6a2bf 100644 --- a/expat/Changes +++ b/expat/Changes @@ -1,3 +1,4 @@ + - Changed default patterns in lib/Makefile.in to fit non-GNU makes - The reference had the wrong label for XML_SetStartNamespaceDecl. Reported by an anonymous user. Release 1.95.0 Fri Sep 29 2000 diff --git a/expat/lib/Makefile.in b/expat/lib/Makefile.in index 95af269d..82022c66 100644 --- a/expat/lib/Makefile.in +++ b/expat/lib/Makefile.in @@ -105,7 +105,7 @@ all: $(LIBRARY) .SUFFIXES: .c .lo .o .PHONY: all clean distclean maintainer-clean -%.o: %.c +.c.o: @echo '$(COMPILE) -c $<'; \ $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ @@ -114,7 +114,7 @@ all: $(LIBRARY) >> .deps/$(*F).P; \ rm .deps/$(*F).pp -%.lo: %.c +.c.lo: @echo '$(LTCOMPILE) -c $<'; \ test -d .deps || mkdir .deps ; \ $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<