mirror of
https://github.com/php/php-src.git
synced 2026-04-02 13:43:02 +02:00
with libtool components
* SAPI targets can enable thread-safe mode and define
shared/static/program build target
* all configure scripts use the same config.cache
* phplibdir is $(top_builddir)/modules to avoid
permission problems
* sapi/*/Makefile.inc are gone
* runpath handling cleaned up
* top-level Makefile.in obsoleted through Makefile.am
* --enable-versioning uses libtool's cleaner and more
portable -export-symbols feature
13 lines
345 B
Makefile
13 lines
345 B
Makefile
# $Id$
|
|
|
|
SRC=xml.c
|
|
INCLUDES=@INCLUDES@ @XML_INCLUDE@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LTLIBRARIES=@XML_STATIC@
|
|
EXTRA_LTLIBRARIES=libphpext_xml.la xml.la
|
|
libphpext_xml_la_SOURCES=$(SRC)
|
|
phplib_LTLIBRARIES=@XML_SHARED@
|
|
xml_la_SOURCES=$(SRC)
|
|
xml_la_LIBADD=@XML_LIBS@
|
|
xml_la_LDFLAGS=-avoid-version -module -rpath $(phplibdir)
|
|
EXTRA_LIBS=
|