mirror of
https://github.com/php/php-src.git
synced 2024-12-02 06:13:40 +08:00
f2f8d38efa
- added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
22 lines
395 B
Makefile
22 lines
395 B
Makefile
# $Id$
|
|
|
|
DEPTH = ../..
|
|
topsrcdir = @topsrcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
LTLIBRARY_NAME = libinformix.la
|
|
LTLIBRARY_SOURCES = ifx.c
|
|
LTLIBRARY_LIBADD = $(IFX_LIBS)
|
|
CLEANFILES = ifx.c
|
|
|
|
include $(topsrcdir)/build/ltlib.mk
|
|
|
|
ifx.c: $(srcdir)/ifx.ec
|
|
(if test -d $(INFORMIXDIR); then \
|
|
esql -e $(IFX_ESQL_FLAGS) $(srcdir)/ifx.ec; \
|
|
else \
|
|
touch ifx.c; \
|
|
fi)
|
|
|