diff options
| author | Pierre Joye <pajoye@php.net> | 2010-12-14 02:55:26 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2010-12-14 02:55:26 +0000 |
| commit | e79ed6359df29f7888a120ea60ab954899d27d91 (patch) | |
| tree | 760a5b12e4bfb2aa46de75131e6de2ced8da1017 /win32/build/confutils.js | |
| parent | 269a6b09a398e10644841f20b1a763d14d52374a (diff) | |
| download | php-git-e79ed6359df29f7888a120ea60ab954899d27d91.tar.gz | |
- add nmake install-sdk (create the devel package) and related sub rules
Diffstat (limited to 'win32/build/confutils.js')
| -rw-r--r-- | win32/build/confutils.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 2609cf5c96..3b5c880144 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1720,17 +1720,17 @@ function generate_makefile() MF.Write(TF.ReadAll());
- MF.WriteLine("install-headers:");
- MF.WriteLine(" @if not exist $(PHP_PREFIX)\\include mkdir $(PHP_PREFIX)\\include >nul");
- MF.WriteLine(" @for %D in ($(INSTALL_HEADERS_DIR)) do @if not exist $(PHP_PREFIX)\\include\\%D mkdir $(PHP_PREFIX)\\include\\%D >nul");
+ MF.WriteLine("build-headers:");
+ MF.WriteLine(" @if not exist $(BUILD_DIR_DEV)\\include mkdir $(BUILD_DIR_DEV)\\include >nul");
+ MF.WriteLine(" @for %D in ($(INSTALL_HEADERS_DIR)) do @if not exist $(BUILD_DIR_DEV)\\include\\%D mkdir $(BUILD_DIR_DEV)\\include\\%D >nul");
for (i in headers_install) {
if (headers_install[i][2] != "") {
- MF.WriteLine(" @if not exist $(PHP_PREFIX)\\include\\" + headers_install[i][2] + " mkdir $(PHP_PREFIX)\\include\\" +
+ MF.WriteLine(" @if not exist $(BUILD_DIR_DEV)\\include\\" + headers_install[i][2] + " mkdir $(BUILD_DIR_DEV)\\include\\" +
headers_install[i][2] + ">nul");
- MF.WriteLine(" @copy " + headers_install[i][0] + " " + "$(PHP_PREFIX)\\include\\" + headers_install[i][2] + " /y >nul");
+ MF.WriteLine(" @copy " + headers_install[i][0] + " " + "$(BUILD_DIR_DEV)\\include\\" + headers_install[i][2] + " /y >nul");
}
}
- MF.WriteLine(" @for %D in ($(INSTALL_HEADERS_DIR)) do @copy %D*.h $(PHP_PREFIX)\\include\\%D /y >nul");
+ MF.WriteLine(" @for %D in ($(INSTALL_HEADERS_DIR)) do @copy %D*.h $(BUILD_DIR_DEV)\\include\\%D /y >nul");
TF.Close();
MF.WriteBlankLines(2);
|
