2000-08-20 13:36:07 +08:00
# +----------------------------------------------------------------------+
2014-09-20 00:33:14 +08:00
# | PHP Version 7 |
2000-08-20 13:36:07 +08:00
# +----------------------------------------------------------------------+
2016-01-02 07:44:37 +08:00
# | Copyright (c) 1997-2016 The PHP Group |
2000-08-20 13:36:07 +08:00
# +----------------------------------------------------------------------+
2006-01-01 20:51:34 +08:00
# | This source file is subject to version 3.01 of the PHP license, |
2000-08-20 13:36:07 +08:00
# | that is bundled with this package in the file LICENSE, and is |
2003-06-11 04:04:29 +08:00
# | available through the world-wide-web at the following url: |
2006-01-01 20:51:34 +08:00
# | http://www.php.net/license/3_01.txt |
2000-08-20 13:36:07 +08:00
# | If you did not receive a copy of the PHP license and are unable to |
# | obtain it through the world-wide-web, please send a note to |
# | license@php.net so we can mail you a copy immediately. |
# +----------------------------------------------------------------------+
2002-02-28 16:29:35 +08:00
# | Author: Sascha Schumann <sascha@schumann.cx> |
2000-08-20 13:36:07 +08:00
# +----------------------------------------------------------------------+
1999-12-30 10:59:53 +08:00
#
2000-08-20 13:36:07 +08:00
# $Id$
1999-12-30 10:59:53 +08:00
#
i n c l u d e g e n e r a t e d _ l i s t s
TOUCH_FILES = mkinstalldirs install-sh missing
2001-05-12 19:19:46 +08:00
LT_TARGETS = ltmain.sh config.guess config.sub
1999-12-30 10:59:53 +08:00
2000-11-27 21:27:51 +08:00
config_h_in = main/php_config.h.in
1999-12-30 10:59:53 +08:00
2002-03-07 22:20:02 +08:00
targets = $( TOUCH_FILES) configure $( config_h_in)
1999-12-30 10:59:53 +08:00
2005-04-04 15:16:01 +08:00
PHP_AUTOCONF ?= 'autoconf'
PHP_AUTOHEADER ?= 'autoheader'
2005-02-04 01:42:42 +08:00
SUPPRESS_WARNINGS ?= 2>& 1 | ( egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times|AC_DECL_YYTEXT is expanded from...|the top level)' || true )
2005-01-20 07:03:29 +08:00
2005-02-04 01:42:42 +08:00
all : $( targets )
1999-12-30 10:59:53 +08:00
2011-05-16 08:14:47 +08:00
$(config_h_in) : configure
1999-12-30 10:59:53 +08:00
# explicitly remove target since autoheader does not seem to work
# correctly otherwise (timestamps are not updated)
@echo rebuilding $@
@rm -f $@
2005-04-04 15:16:01 +08:00
$( PHP_AUTOHEADER) $( SUPPRESS_WARNINGS)
1999-12-30 10:59:53 +08:00
$(TOUCH_FILES) :
touch $( TOUCH_FILES)
2000-02-24 03:26:31 +08:00
2002-03-07 22:20:02 +08:00
aclocal.m4 : configure .in acinclude .m 4
2003-06-27 08:19:43 +08:00
@echo rebuilding $@
2005-01-20 09:41:20 +08:00
cat acinclude.m4 ./build/libtool.m4 > $@
2003-06-27 08:19:43 +08:00
1999-12-30 10:59:53 +08:00
configure : aclocal .m 4 configure .in $( config_m 4_files )
@echo rebuilding $@
2015-01-31 00:58:49 +08:00
@rm -f $@
2015-02-04 16:38:19 +08:00
$( PHP_AUTOCONF) -f $( SUPPRESS_WARNINGS)
2005-01-20 09:41:20 +08:00