diff options
author | Anatol Belski <ab@php.net> | 2014-07-14 09:52:39 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-07-14 09:52:39 +0200 |
commit | 04821a1ee6e0594b710160688f227a8ff8cd6628 (patch) | |
tree | db212ca43d7eca0a49d5111268b88662edec01d9 /win32/build/Makefile.phpize | |
parent | f25ff02b54ac2dc161df91569ce0a396d59e5a4d (diff) | |
download | php-git-04821a1ee6e0594b710160688f227a8ff8cd6628.tar.gz |
added headers install to phpize mode
Diffstat (limited to 'win32/build/Makefile.phpize')
-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
+
|