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
This commit is contained in:
Wez Furlong 2004-01-09 13:32:20 +00:00
parent 2aa33945fc
commit fc1d460a99

View File

@ -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