summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-12-11 16:36:27 +0000
committerPierre Joye <pajoye@php.net>2010-12-11 16:36:27 +0000
commitd94744649fd1b886eec210055d64f52b220d39cb (patch)
tree3107412d5e912b0da5255c1cc3dfd02244d648bc /win32
parent19f65777203c0f9a431ec71df1acf495b38fec54 (diff)
downloadphp-git-d94744649fd1b886eec210055d64f52b220d39cb.tar.gz
- add install-lib(s), remove header for now, will be genarated
Diffstat (limited to 'win32')
-rw-r--r--win32/build/Makefile10
1 files 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)