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.
The `generated_lists` file is generated as a helper for build related Makefile to include a list of *.m4 files prerequisites. When some of these *.m4 files change, the configure script is regenerated when buildconf is run. This can be simplified using dynamic environment variable passed to the Makefile directly so it avoids another file from being generated in the project root directory and shipping it with the PHP release or creating a dedicated gitignore rule. This is portable across all POSIX compatible makes So this patch includes GNU Make, and everybody elses' make derivative support.
- Loading branch information
Showing
4 changed files
with
7 additions
and
18 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
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 |
---|---|---|
|
@@ -14,8 +14,6 @@ | |
# | Author: Sascha Schumann <[email protected]> | | ||
# +----------------------------------------------------------------------+ | ||
|
||
include generated_lists | ||
|
||
config_h_in = main/php_config.h.in | ||
|
||
targets = configure $(config_h_in) | ||
|
@@ -40,7 +38,7 @@ aclocal.m4: configure.ac acinclude.m4 | |
@echo rebuilding $@ | ||
cat acinclude.m4 ./build/libtool.m4 > $@ | ||
|
||
configure: aclocal.m4 configure.ac $(config_m4_files) | ||
configure: aclocal.m4 configure.ac $(M4_FILES) | ||
@echo rebuilding $@ | ||
@rm -f $@ | ||
$(PHP_AUTOCONF) -f $(SUPPRESS_WARNINGS) |
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