diff options
author | Sascha Schumann <sas@php.net> | 2000-05-01 03:10:01 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-05-01 03:10:01 +0000 |
commit | 9595fb76f385825f1836a57c84e945a123d600bc (patch) | |
tree | a31bb22ed95c05fbb09005729ec988cc5801ed59 /ext | |
parent | 52b1e3482d617720975cb7b2a788218caa3840ca (diff) | |
download | php-git-9595fb76f385825f1836a57c84e945a123d600bc.tar.gz |
Rebuild xml, if libexpat changed.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/xml/Makefile.in | 5 | ||||
-rw-r--r-- | ext/xml/expat/Makefile.in | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ext/xml/Makefile.in b/ext/xml/Makefile.in index 561ca41a96..09024171f3 100644 --- a/ext/xml/Makefile.in +++ b/ext/xml/Makefile.in @@ -1,9 +1,10 @@ LTLIBRARY_NAME = libxml.la LTLIBRARY_SOURCES = xml.c -LTLIBRARY_LIBADD = expat/libexpat.la +LTLIBRARY_DEPENDENCIES = expat/libexpat.la +LTLIBRARY_LIBADD = $(LTLIBRARY_DEPENDENCIES) LTLIBRARY_SHARED_NAME = xml.la -LTLIBRARY_SHARED_LIBADD = expat/libexpat.la +LTLIBRARY_SHARED_LIBADD = $(LTLIBRARY_LIBADD) SUBDIRS = expat diff --git a/ext/xml/expat/Makefile.in b/ext/xml/expat/Makefile.in index 6a109f1f98..f9434e88be 100644 --- a/ext/xml/expat/Makefile.in +++ b/ext/xml/expat/Makefile.in @@ -2,6 +2,7 @@ LTLIBRARY_NAME = libexpat.la LTLIBRARY_DEPENDENCIES = xmltok/libexpat_tok.la xmlparse/libexpat_parse.la LTLIBRARY_LIBADD = $(LTLIBRARY_DEPENDENCIES) +LTLIBRARY_SHARED_LIBADD = $(LTLIBRARY_LIBADD) SUBDIRS = xmltok xmlparse |