Skip to content

Commit

Permalink
Remove mkdep.awk
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
petk committed Oct 20, 2018
1 parent 82f59a9 commit addcf24
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 76 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -2,7 +2,6 @@
*~
.#*
*.
*.slo
*.mk
*.mem
*.gcda
Expand Down
73 changes: 0 additions & 73 deletions build/mkdep.awk

This file was deleted.

1 change: 0 additions & 1 deletion scripts/Makefile.frag
Expand Up @@ -7,7 +7,6 @@ phpbuilddir = $(libdir)/build

BUILD_FILES = \
scripts/phpize.m4 \
build/mkdep.awk \
build/scan_makefile_in.awk \
build/libtool.m4 \
build/ax_check_compile_flag.m4 \
Expand Down
2 changes: 1 addition & 1 deletion scripts/phpize.in
Expand Up @@ -9,7 +9,7 @@ includedir="`eval echo @includedir@`/php"
builddir="`pwd`"
SED="@SED@"

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"
FILES_BUILD="scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4 ax_gcc_func_attribute.m4 php_cxx_compile_stdcxx.m4"
FILES="acinclude.m4 Makefile.global config.sub config.guess ltmain.sh run-tests*.php"
CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ install-sh \
mkinstalldirs missing config.nice config.sub config.guess configure configure.ac \
Expand Down

0 comments on commit addcf24

Please sign in to comment.