summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-01-09 13:32:20 +0000
committerWez Furlong <wez@php.net>2004-01-09 13:32:20 +0000
commitfc1d460a99c1bf33c0e3aed3ff876cbdc6f1389f (patch)
treebf27b889678493b506e06d1b16d9f929f2a7fa57 /win32
parent2aa33945fc319bcdfb2b26f285f5ac1ccf53a068 (diff)
downloadphp-git-fc1d460a99c1bf33c0e3aed3ff876cbdc6f1389f.tar.gz
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
Diffstat (limited to 'win32')
-rw-r--r--win32/build/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/build/Makefile b/win32/build/Makefile
index 5d337db18e..c2e323c242 100644
--- a/win32/build/Makefile
+++ b/win32/build/Makefile
@@ -65,7 +65,9 @@ $(BUILD_DIR) $(BUILD_DIRS_SUB):
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