Skip to content

Commit addcf24

Browse files
committed
Remove mkdep.awk
The `mkdep.awk` file was part of the previous *nix build system and was used to create a .deps file with a list of dependencies that could be processed by Automake further on. Newer build system was done via 9d9d39a and outdated files removed via 2281541 so the current file in the PHP source code is not used anymore. Additionally, the *.slo files were processed by this file. The *.slo files also used to be generated by older libtool so today, these don't get generated anymore.
1 parent 82f59a9 commit addcf24

File tree

4 files changed

+1
-76
lines changed

4 files changed

+1
-76
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
*~
33
.#*
44
*.
5-
*.slo
65
*.mk
76
*.mem
87
*.gcda

build/mkdep.awk

Lines changed: 0 additions & 73 deletions
This file was deleted.

scripts/Makefile.frag

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ phpbuilddir = $(libdir)/build
77

88
BUILD_FILES = \
99
scripts/phpize.m4 \
10-
build/mkdep.awk \
1110
build/scan_makefile_in.awk \
1211
build/libtool.m4 \
1312
build/ax_check_compile_flag.m4 \

scripts/phpize.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ includedir="`eval echo @includedir@`/php"
99
builddir="`pwd`"
1010
SED="@SED@"
1111

12-
FILES_BUILD="mkdep.awk scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4 ax_gcc_func_attribute.m4 php_cxx_compile_stdcxx.m4"
12+
FILES_BUILD="scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4 ax_gcc_func_attribute.m4 php_cxx_compile_stdcxx.m4"
1313
FILES="acinclude.m4 Makefile.global config.sub config.guess ltmain.sh run-tests*.php"
1414
CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ install-sh \
1515
mkinstalldirs missing config.nice config.sub config.guess configure configure.ac \

0 commit comments

Comments
 (0)