From: Pierre Joye Date: Sat, 11 Dec 2010 16:36:27 +0000 (+0000) Subject: - add install-lib(s), remove header for now, will be genarated X-Git-Tag: php-5.4.0alpha1~191^2~530 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d94744649fd1b886eec210055d64f52b220d39cb;p=php - add install-lib(s), remove header for now, will be genarated --- 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)