summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-12-22 04:35:18 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-12-22 04:35:18 +0000
commitb3eb5d6c3977bc6e7cd40903e9a44267bd0187cd (patch)
treebc35c08336da272adcc5c84e0fbc546caf58b7b0 /Makefile.win
parent3d7ef7392e59b43b99ebcb9ac6b1d546e4c8205b (diff)
downloadhttpd-b3eb5d6c3977bc6e7cd40903e9a44267bd0187cd.tar.gz
Install missing modules/xxx/foo.h garbage, the point of this
exercise, and why these aren't in includes/, still escapes me. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@606394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win22
1 files changed, 18 insertions, 4 deletions
diff --git a/Makefile.win b/Makefile.win
index df7f09aa85..df916833a2 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -716,10 +716,24 @@ BEGIN {
xcopy docs\docroot "$(INSTDIR)\htdocs" /d < .a
xcopy docs\icons "$(INSTDIR)\icons" /s /d < .a
xcopy docs\manual "$(INSTDIR)\manual" /s /d < .a
- xcopy srclib\apr-util\xml\expat\lib\expat.h "$(INSTDIR)\include" /d < .a
- xcopy srclib\apr\include\*.h "$(INSTDIR)\include" /d < .a
- xcopy srclib\apr-util\include\*.h "$(INSTDIR)\include" /d < .a
- xcopy include\*.h "$(INSTDIR)\include" /d < .a
+ for %f in ( \
+ srclib\apr-util\xml\expat\lib\expat.h \
+ srclib\apr\include\*.h \
+ srclib\apr-util\include\*.h \
+ include\*.h \
+ os\win32\os.h \
+ server\mpm\winnt\mpm*.h \
+ modules\aaa\mod_auth.h \
+ modules\database\mod_dbd.h \
+ modules\dav\main\mod_dav.h \
+ modules\filters\mod_include.h \
+ modules\generators\mod_cgi.h \
+ modules\generators\mod_status.h \
+ modules\loggers\mod_log_config.h \
+ modules\http\mod_core.h \
+ modules\proxy\mod_proxy.h \
+ modules\ssl\mod_ssl.h ) do \
+ @copy %f "$(INSTDIR)\include" < .y > nul
copy srclib\apr\Lib$(SHORT)\apr-1.lib "$(INSTDIR)\lib" <.y
copy srclib\apr\Lib$(SHORT)\apr-1.pdb "$(INSTDIR)\lib" <.y
copy srclib\apr-util\Lib$(SHORT)\aprutil-1.lib "$(INSTDIR)\lib" <.y