mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
18943c345d
. Changed the compile so that it doesn't "pollute" the INCLUDES anymore and thus cause trouble with other extensions which might use the same header files. (e.g. ODBC) . Some fixes for Informix compile problems (with the new build system) . Removed unnecessary stub.c file.
11 lines
301 B
Makefile
11 lines
301 B
Makefile
|
|
$(srcdir)/ifx.c: $(srcdir)/ifx.ec $(builddir)/libphpifx.a
|
|
(if test -d $(INFORMIXDIR); then \
|
|
THREADLIB=POSIX $(INFORMIXDIR)/bin/esql -e $(IFX_ESQL_FLAGS) $(srcdir)/ifx.ec; mv ifx.c $@; \
|
|
else \
|
|
touch $@; \
|
|
fi)
|
|
|
|
$(builddir)/libphpifx.a:
|
|
$(LIBTOOL) --mode=link $(CC) $(IFX_LIBOBJS) -o $@
|