mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
d9f52fe0a7
Examples on how to test: ./configure --with-xml static ./configure --with-xml=/opt static ./configure --with-xml=shared shared ./configure --with-xml=shared,/opt shared The difference between these two is that when the extension is shared, it is not merged into libphpext.a. The shared extension is currently always built. I can't find a way to do just one or the other with automake/libtool, if someone has a clever idea, please come forward. :-) "make install" installs the .so (as well as a lot of other cruft) in $prefix/lib/php.
11 lines
290 B
Makefile
11 lines
290 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = @EXT_SUBDIRS@
|
|
EXT_STATIC = @EXT_STATIC@
|
|
|
|
noinst_LIBRARIES=libphpext.a
|
|
|
|
libphpext.a: @EXT_LIBS@
|
|
top_srcdir=$(top_srcdir) $(top_builddir)/scripts/mkextlib $@ $(EXT_STATIC)
|
|
-@test "`uname -s`" = "Rhapsody" && $(RANLIB) $@
|