mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Add distclean target
This commit is contained in:
parent
5864b57eec
commit
531b5ecbfc
1 changed files with 10 additions and 3 deletions
|
@ -75,7 +75,7 @@ top_builddir = $(DEPTH)
|
||||||
|
|
||||||
all: all-recursive $(targets)
|
all: all-recursive $(targets)
|
||||||
|
|
||||||
depend-recursive clean-recursive all-recursive install-recursive:
|
distclean-recursive depend-recursive clean-recursive all-recursive install-recursive:
|
||||||
@target=`echo $@|sed s/-recursive//`; \
|
@target=`echo $@|sed s/-recursive//`; \
|
||||||
if test '$(NO_RECURSION)' != "$$target"; then \
|
if test '$(NO_RECURSION)' != "$$target"; then \
|
||||||
list='$(SUBDIRS)'; for i in $$list; do \
|
list='$(SUBDIRS)'; for i in $$list; do \
|
||||||
|
@ -87,10 +87,16 @@ depend-recursive clean-recursive all-recursive install-recursive:
|
||||||
depend: depend-recursive
|
depend: depend-recursive
|
||||||
test "`echo *.c`" = '*.c' || perl $(top_srcdir)/build/mkdep.perl $(CPP) $(INCLUDES) *.c > .deps
|
test "`echo *.c`" = '*.c' || perl $(top_srcdir)/build/mkdep.perl $(CPP) $(INCLUDES) *.c > .deps
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive clean-x
|
||||||
|
|
||||||
|
clean-x:
|
||||||
rm -f $(targets) *.lo *.la *.o $(CLEANFILES)
|
rm -f $(targets) *.lo *.la *.o $(CLEANFILES)
|
||||||
rm -rf .libs
|
rm -rf .libs
|
||||||
|
|
||||||
|
distclean: distclean-recursive clean-x
|
||||||
|
rm -f config.cache config.log config.status config_vars.mk libtool \
|
||||||
|
php_config.h stamp-h Makefile build-defs.h php4.spec libphp4.module
|
||||||
|
|
||||||
install: install-recursive $(targets) $(install_targets)
|
install: install-recursive $(targets) $(install_targets)
|
||||||
|
|
||||||
install-modules:
|
install-modules:
|
||||||
|
@ -103,4 +109,5 @@ install-modules:
|
||||||
include $(srcdir)/.deps
|
include $(srcdir)/.deps
|
||||||
|
|
||||||
.PHONY: all-recursive clean-recursive install-recursive \
|
.PHONY: all-recursive clean-recursive install-recursive \
|
||||||
$(install_targets) install all clean depend depend-recursive shared
|
$(install_targets) install all clean depend depend-recursive shared \
|
||||||
|
distclean-recursive distclean clean-x
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue