Browse Source

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
PEAR_1_4DEV
Wez Furlong 23 years ago
parent
commit
fc1d460a99
  1. 4
      win32/build/Makefile

4
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

Loading…
Cancel
Save