Fix make problems on BSD & HPUX reported in Bug # 116248

This commit is contained in:
Clark Cooper 2000-10-10 18:34:11 +00:00
parent 15447d34ea
commit 219c9e2de6
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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 $<