diff options
author | Anatol Belski <ab@php.net> | 2014-07-14 09:53:34 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-07-14 09:53:34 +0200 |
commit | 41009b40e0287ece1cf8998adf3218ed17b5797e (patch) | |
tree | ed42866052eceb81e60dbb889cd89adf81f61e7b /win32 | |
parent | f3bf887e6d84619fd03efc244756f68fa857b346 (diff) | |
parent | 79b91e3c5a422ebf3a44af60368d83b9dc9c400b (diff) | |
download | php-git-41009b40e0287ece1cf8998adf3218ed17b5797e.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
added headers install to phpize mode
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/Makefile.phpize | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/build/Makefile.phpize b/win32/build/Makefile.phpize index 0463d332fb..44faf7d54b 100644 --- a/win32/build/Makefile.phpize +++ b/win32/build/Makefile.phpize @@ -6,6 +6,7 @@ MT="$(MT)" PHPSDK_DIR=$(PHP_DIR)
PHPLIB=$(PHPSDK_DIR)\lib\$(PHPLIB)
LDFLAGS=$(LDFLAGS) /libpath:"$(PHPSDK_DIR)\lib\;$(PHPSDK_DIR)"
+BUILD_DIR_DEV=$(PHPSDK_DIR)
all: $(EXT_TARGETS) $(PECL_TARGETS)
@@ -33,3 +34,5 @@ _VC_MANIFEST_EMBED_EXE= if exist $@.manifest $(MT) -nologo -manifest $@.manifest _VC_MANIFEST_EMBED_DLL= if exist $@.manifest $(MT) -nologo -manifest $@.manifest -outputresource:$@;2
!endif
+install: build-headers
+
|