forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Please welcome the new build system.
If you encounter any problems, please make sure to email [email protected] directly. An introduction can be found on http://schumann.cx/buildv5.txt
- Loading branch information
Sascha Schumann
committed
Mar 7, 2002
1 parent
0e17eea
commit 9d9d39a
Showing
77 changed files
with
796 additions
and
1,010 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
$(builddir)/zend_language_scanner.lo: $(builddir)/zend_language_parser.h | ||
$(builddir)/zend_ini_scanner.lo: $(builddir)/zend_ini_parser.h | ||
|
||
$(builddir)/zend_language_scanner.c: $(srcdir)/zend_language_scanner.l | ||
$(LEX) -Pzend -S$(srcdir)/flex.skl -o$@ -i $(srcdir)/zend_language_scanner.l | ||
|
||
$(builddir)/zend_language_parser.h: $(builddir)/zend_language_parser.c | ||
$(builddir)/zend_language_parser.c: $(srcdir)/zend_language_parser.y | ||
$(YACC) -p zend -v -d $(srcdir)/zend_language_parser.y -o $@ | ||
|
||
$(builddir)/zend_ini_parser.h: $(builddir)/zend_ini_parser.c | ||
$(builddir)/zend_ini_parser.c: $(srcdir)/zend_ini_parser.y | ||
$(YACC) -p ini_ -v -d $(srcdir)/zend_ini_parser.y -o $@ | ||
|
||
$(builddir)/zend_ini_scanner.c: $(srcdir)/zend_ini_scanner.l | ||
$(LEX) -Pini_ -S$(srcdir)/flex.skl -o$@ -i $(srcdir)/zend_ini_scanner.l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
|
||
mkinstalldirs = $(top_srcdir)/build/shtool mkdir -p | ||
INSTALL = $(top_srcdir)/build/shtool install -c | ||
INSTALL_DATA = $(INSTALL) -m 644 | ||
|
||
DEFS = -I$(top_builddir)/main -I$(top_srcdir) | ||
COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) | ||
|
||
|
||
all: $(all_targets) | ||
|
||
build-modules: $(PHP_MODULES) | ||
|
||
libphp4.la: $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) | ||
$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS) $(EXTRA_CFLAGS) -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) $(EXTRA_LIBS) -o $@ | ||
|
||
php: $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) | ||
$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) $(EXTRA_LIBS) -o $@ | ||
|
||
sapi/cli/php: $(PHP_GLOBAL_OBJS) $(PHP_CLI_OBJS) | ||
$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_CLI_OBJS) $(EXTRA_LIBS) -o $@ | ||
|
||
install: $(install_targets) | ||
|
||
|
||
install-cli: | ||
$(INSTALL_CLI) | ||
|
||
install-sapi: | ||
-@$(LIBTOOL) --silent --mode=install cp libphp4.la $(phptempdir)/libphp4.la >/dev/null 2>&1 | ||
-@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir) | ||
-@if test ! -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); then \ | ||
for i in 0.0.0 0.0 0; do \ | ||
if test -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME).$$i; then \ | ||
$(LN_S) $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME).$$i $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); \ | ||
break; \ | ||
fi; \ | ||
done; \ | ||
fi | ||
$(INSTALL_IT) | ||
|
||
install-modules: | ||
@test -d modules && \ | ||
$(mkinstalldirs) $(INSTALL_ROOT)$(EXTENSION_DIR) && \ | ||
echo "installing shared modules into $(EXTENSION_DIR)" && \ | ||
rm -f modules/*.la && \ | ||
cp modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) >/dev/null 2>&1 || true | ||
|
||
install-tester: | ||
@echo "Installing regression tester" | ||
@$(mkinstalldirs) $(PEAR_INSTALLDIR) | ||
@$(INSTALL) -m 755 $(top_srcdir)/run-tests.php $(INSTALL_ROOT)$(PEAR_INSTALLDIR) | ||
|
||
install-su: install-pear install-tester | ||
|
||
test: php | ||
TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) \ | ||
$(top_builddir)/php -C -q $(top_srcdir)/run-tests.php \ | ||
$(top_srcdir) | ||
|
||
clean: | ||
find . -name \*.lo -o -name \*.o -o -name \*.la -o -name \*.a| xargs rm -f | ||
find . -name .libs -a -type d|xargs rm -rf | ||
rm -f libphp4.la php sapi/cli/php modules/* libs/* | ||
|
||
distclean: clean | ||
rm -f config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h php4.spec sapi/apache/libphp4.module buildmk.stamp | ||
find . -name Makefile | xargs rm -f | ||
|
||
.PHONY: all clean install distclean test | ||
.NOEXPORT: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- fix phpize | ||
- clean up .cvsignores | ||
- purge Makefile.ins and replace PHP_EXTENSION in config.m4s | ||
with appropiate calls to PHP_NEW_EXTENSION |
Oops, something went wrong.