mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
7573b236ea
another "library" (an object file). We build a standard library out of this object here, so that we can link it in at the right place later.
20 lines
404 B
Makefile
20 lines
404 B
Makefile
# $Id$
|
|
|
|
INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LTLIBRARIES=libphpext_informix.la
|
|
noinst_LIBRARIES=libifx.a
|
|
libifx_a_SOURCES=stub.c
|
|
libifx_a_LIBADD=@IFX_OBJS@
|
|
libphpext_informix_la_SOURCES=ifx.c
|
|
libphpext_informix_la_LIBADD=@IFX_LIBS@
|
|
|
|
CLEANFILES = ifx.c
|
|
|
|
ifx.c: ifx.ec
|
|
(if test -d @INFORMIXDIR@; then \
|
|
esql -e @IFX_ESQL_FLAGS@ ifx.ec; \
|
|
else \
|
|
touch ifx.c; \
|
|
fi)
|
|
|