wez             Fri Jan  9 08:32:21 2004 EDT

  Modified files:              
    /php-src/win32/build        Makefile 
  Log:
  add a rule to clean pecl things; split up the command line into 3 to
  try to avoid possible problems with line-length under VC6
  
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.16 php-src/win32/build/Makefile:1.17
--- php-src/win32/build/Makefile:1.16   Fri Jan  9 08:17:58 2004
+++ php-src/win32/build/Makefile        Fri Jan  9 08:32:20 2004
@@ -14,7 +14,7 @@
 #  | Author: Wez Furlong <[EMAIL PROTECTED]>                           |
 #  +----------------------------------------------------------------------+
 #
-# $Id: Makefile,v 1.16 2004/01/09 13:17:58 wez Exp $
+# $Id: Makefile,v 1.17 2004/01/09 13:32:20 wez Exp $
 # This is the makefile template for the win32 build
 
 CC="$(CL)"
@@ -65,7 +65,9 @@
 
 clean-sapi:
        @echo Cleaning SAPI
-       @for %D in ($(EXT_TARGETS) $(SAPI_TARGETS)) do @del /F /Q $(BUILD_DIR)\%D > NUL
+       @for %D in ($(EXT_TARGETS)) do @del /F /Q $(BUILD_DIR)\%D > NUL
+       @for %D in ($(PECL_TARGETS)) do @del /F /Q $(BUILD_DIR)\%D > NUL
+       @for %D in ($(SAPI_TARGETS)) do @del /F /Q $(BUILD_DIR)\%D > NUL
        @del /F /Q $(BUILD_DIR)\$(PHPDLL)
 
 clean: clean-sapi

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to