php4-beta | 199912
Date: 12/30/99
- Next message: Sascha Schumann: "[PHP4BETA] cvs: /php4/build build2.mk"
- Previous message: Sascha Schumann: "Re: [PHP4BETA] Has the target 'make distclean" been removed in the latest CVS"
- Next in thread: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Maybe reply: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Maybe reply: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
sas Thu Dec 30 00:54:01 1999 EDT
Modified files:
/php4/build rules.mk
Log:
Add distclean target
Index: php4/build/rules.mk
diff -u php4/build/rules.mk:1.1 php4/build/rules.mk:1.2
--- php4/build/rules.mk:1.1 Wed Dec 29 21:58:32 1999
+++ php4/build/rules.mk Thu Dec 30 00:53:27 1999
@@ -21,7 +21,7 @@
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
##############################################################################
-# $Id: rules.mk,v 1.1 1999/12/30 02:58:32 sas Exp $
+# $Id: rules.mk,v 1.2 1999/12/30 05:53:27 sas Exp $
#
include $(DEPTH)/config_vars.mk
@@ -75,7 +75,7 @@
all: all-recursive $(targets)
-depend-recursive clean-recursive all-recursive install-recursive:
+distclean-recursive depend-recursive clean-recursive all-recursive install-recursive:
<email protected>=`echo $@|sed s/-recursive//`; \
if test '$(NO_RECURSION)' != "$$target"; then \
list='$(SUBDIRS)'; for i in $$list; do \
@@ -87,10 +87,16 @@
depend: depend-recursive
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 -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-modules:
@@ -103,4 +109,5 @@
include $(srcdir)/.deps
.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
-- PHP 4.0 Beta Mailing List <http://www.php.net/version4/> To unsubscribe, e-mail: php4beta-unsubscribe <email protected> For additional commands, e-mail: php4beta-help <email protected> To contact the list administrators, e-mail: php4beta-admin <email protected>
- Next message: Sascha Schumann: "[PHP4BETA] cvs: /php4/build build2.mk"
- Previous message: Sascha Schumann: "Re: [PHP4BETA] Has the target 'make distclean" been removed in the latest CVS"
- Next in thread: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Maybe reply: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Maybe reply: Sascha Schumann: "[PHP4BETA] cvs: /php4/build rules.mk"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

