mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
99e0b36321
Cleaned up extension namespace, and changed ext/standard into one single extension.
58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
|
|
DEPTH = .
|
|
topsrcdir = @topsrcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
ZEND_DIR = $(srcdir)/Zend
|
|
SUBDIRS = Zend ext sapi $(TSRM_DIR) $(REGEX_DIR) . $(PEAR_DIR)
|
|
|
|
LTLIBRARY_NAME = libphp4.la
|
|
|
|
LTLIBRARY_SOURCES = \
|
|
main.c internal_functions.c snprintf.c php_sprintf.c \
|
|
configuration-parser.c configuration-scanner.c \
|
|
safe_mode.c fopen-wrappers.c php_realpath.c alloca.c \
|
|
php_ini.c SAPI.c rfc1867.c dlist.c php_content_types.c strlcpy.c \
|
|
strlcat.c mergesort.c reentrancy.c php_variables.c php_ticks.c
|
|
|
|
LTLIBRARY_DEPENDENCIES = \
|
|
Zend/libZend.la \
|
|
sapi/$(PHP_SAPI)/libsapi.la \
|
|
$(REGEX_LIB) \
|
|
$(EXT_LTLIBS) \
|
|
$(TSRM_LIB)
|
|
|
|
LTLIBRARY_LDFLAGS = -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS)
|
|
LTLIBRARY_LIBADD = $(LTLIBRARY_DEPENDENCIES) $(EXTRA_LIBS)
|
|
|
|
PROGRAM_NAME = $(PHP_PROGRAM)
|
|
PROGRAM_SOURCES = stub.c
|
|
PROGRAM_LDADD = libphp4.la
|
|
PROGRAM_LDFLAGS = -export-dynamic
|
|
PROGRAM_DEPENDENCIES = $(PROGRAM_LDADD)
|
|
|
|
targets = $(LTLIBRARY_NAME) $(PROGRAM_NAME)
|
|
|
|
install_targets = install-local install-modules
|
|
|
|
include $(topsrcdir)/build/rules.mk
|
|
include $(topsrcdir)/build/library.mk
|
|
include $(topsrcdir)/build/program.mk
|
|
|
|
install-local:
|
|
@$(LIBTOOL) --silent --mode=install cp libphp4.la $(phptempdir)/libphp4.la >/dev/null 2>&1
|
|
-@$(mkinstalldirs) $(bindir)
|
|
$(INSTALL_IT)
|
|
|
|
configuration-parser.h configuration-parser.c: configuration-parser.y
|
|
$(YACC) -p cfg -v -d $< -o configuration-parser.c
|
|
|
|
configuration-scanner.c: configuration-scanner.l
|
|
$(LEX) -Pcfg -o$@ -i $<
|
|
|
|
internal_functions.c: internal_functions.c.in config.status
|
|
CONFIG_FILES= CONFIG_HEADERS= ./config.status
|
|
|
|
.NOEXPORT:
|