mirror of
https://github.com/php/php-src.git
synced 2026-04-05 07:02:33 +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
15 lines
418 B
Makefile
15 lines
418 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SRC=gd.c gdcache.c gdttf.c
|
|
INCLUDES=@INCLUDES@ @GD_INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LTLIBRARIES=@GD_STATIC@
|
|
EXTRA_LTLIBRARIES=libphpext_gd.la gd.la
|
|
libphpext_gd_la_SOURCES=$(SRC)
|
|
|
|
phplib_LTLIBRARIES=@GD_SHARED@
|
|
gd_la_SOURCES=$(SRC)
|
|
gd_la_LIBADD=@GD_LFLAGS@ @GD_LIBS@
|
|
gd_la_LDFLAGS=-avoid-version -module -rpath $(phplibdir)
|
|
EXTRA_LIBS=
|
|
|