mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08:14 +02:00
232afa4816
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
16 lines
288 B
Makefile
16 lines
288 B
Makefile
# $Id$
|
|
|
|
INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LTLIBRARIES=libphpext_informix.la
|
|
libphpext_informix_la_SOURCES=ifx.c
|
|
|
|
ifx.c: ifx.ec
|
|
(if test -d @INFORMIXDIR@; then \
|
|
esql -e @IFX_ESQL_FLAGS@ ifx.ec; \
|
|
else \
|
|
touch ifx.c; \
|
|
fi)
|
|
|
|
clean:
|
|
-rm -f ifx.c
|