From d94744649fd1b886eec210055d64f52b220d39cb Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sat, 11 Dec 2010 16:36:27 +0000 Subject: [PATCH] - add install-lib(s), remove header for now, will be genarated --- win32/build/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/win32/build/Makefile b/win32/build/Makefile index 97245b8705..b5545ad3de 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -152,13 +152,11 @@ msi-installer: dist $(BUILD_DIR)\php.exe ..\php-installer\build-installer.php "$(BUILD_DIR)" "$(PHPDLL)" "$(SAPI_TARGETS)" "$(EXT_TARGETS)" "$(PECL_TARGETS)" # need to redirect, since INSTALL is a file in the root... -install: really-install install-headers +install: really-install install-headers install-lib -install-headers: - @if not exist $(PHP_PREFIX)\include mkdir $(PHP_PREFIX)\include >nul - @for %D in ($(INSTALL_HEADERS_DIR)) do @if not exist $(PHP_PREFIX)\include\%D mkdir $(PHP_PREFIX)\include\%D >nul - @for %D in ($(INSTALL_HEADERS_DIR)) do @copy %D*.h $(PHP_PREFIX)\include\%D /y >nul - @for %D in ($(INSTALL_HEADERS)) do @copy %D $(PHP_PREFIX)\include /y >nul +install-lib: + @if not exist $(PHP_PREFIX)\lib mkdir $(PHP_PREFIX)\lib >nul + @copy $(BUILD_DIR)\$(PHPLIB) $(PHP_PREFIX)\lib /y >nul really-install: @if not exist $(PHP_PREFIX) mkdir $(PHP_PREFIX) -- 2.50.1