]> granicus.if.org Git - apache/blob - Makefile.win
Make default install target more consistent with unix.
[apache] / Makefile.win
1 # Makefile for Windows NT and Windows 95/98/2000
2
3 # Targets are:
4 #   _apacher   - build Apache in Release mode
5 #   _apached   - build Apache in Debug mode
6 #   installr   - build and install a Release build
7 #   installd   - build and install a Debug build
8 #   clean      - remove (most) generated files
9 #   _cleanr    - remove (most) files generated by a Release build
10 #   _cleand    - remove (most) files generated by a Debug build
11 #
12 # The default installation directory is \Apache2.0. This can be changed
13 # with the INSTDIR macro, for example:
14 #
15 #   nmake /f Makefile.win INSTDIR="d:\Program Files\Apache" installr
16 #
17 # Note: this does *NOT* change the compiled in default "server root"
18 # Also be aware that certain awk's will not accept backslahed names,
19 # so the server root should be given in forward slashes (quoted),
20 # preferably with the drive designation!
21
22 !IF "$(INSTDIR)" == ""
23 INSTDIR=\Apache2
24 !MESSAGE Using default install directory $(INSTDIR)
25 !ENDIF 
26
27 !IFNDEF MAKEOPT
28 # Only default the behavior if MAKEOPT= is omitted
29 !IF "$(MAKE)" == "NMAKE"
30 # Microsoft NMake options
31 MAKEOPT=-nologo
32 !ELSEIF "($MAKE)" == "make"
33 # Borland make options?  Not really supported (yet)
34 MAKEOPT=-s -N
35 !ENDIF
36 !ENDIF
37
38 default:        _apacher
39
40 _apacher: 
41         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build
42
43 _apached: 
44         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build
45
46 installr: 
47         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build _install
48
49 installd: 
50         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build _install
51
52 _cleanr:  
53         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release CTARGET=CLEAN _build
54
55 _cleand:  
56         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   CTARGET=CLEAN _build
57
58 clean:
59         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release CTARGET=CLEAN _build
60         $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   CTARGET=CLEAN _build
61
62 _build:
63         echo Building Win32 $(LONG) targets ($(SHORT) suffixes)
64         cd srclib\apr
65          $(MAKE) $(MAKEOPT) -f apr.mak CFG="apr - Win32 $(LONG)" RECURSE=0 $(CTARGET)
66          $(MAKE) $(MAKEOPT) -f libapr.mak CFG="libapr - Win32 $(LONG)" RECURSE=0 $(CTARGET)
67         cd ..\..
68         cd srclib\apr-util\xml\expat\lib
69          $(MAKE) $(MAKEOPT) -f xml.mak CFG="xml - Win32 $(LONG)" RECURSE=0 $(CTARGET)
70         cd ..\..\..
71          $(MAKE) $(MAKEOPT) -f aprutil.mak CFG="aprutil - Win32 $(LONG)" RECURSE=0 $(CTARGET)
72          $(MAKE) $(MAKEOPT) -f libaprutil.mak CFG="libaprutil - Win32 $(LONG)" RECURSE=0 $(CTARGET)
73         cd ..\..
74         cd srclib\pcre
75          $(MAKE) $(MAKEOPT) -f dftables.mak CFG="dftables - Win32 $(LONG)" RECURSE=0 $(CTARGET)
76          $(MAKE) $(MAKEOPT) -f pcre.mak CFG="pcre - Win32 $(LONG)" RECURSE=0 $(CTARGET)
77          $(MAKE) $(MAKEOPT) -f pcreposix.mak CFG="pcreposix - Win32 $(LONG)" RECURSE=0 $(CTARGET)
78         cd ..\..
79         cd server
80          $(MAKE) $(MAKEOPT) -f gen_uri_delims.mak CFG="gen_uri_delims - Win32 $(LONG)" RECURSE=0 $(CTARGET)
81          $(MAKE) $(MAKEOPT) -f gen_test_char.mak CFG="gen_test_char - Win32 $(LONG)" RECURSE=0 $(CTARGET)
82         cd ..
83          -del $(LONG)\buildmark.obj
84          $(MAKE) $(MAKEOPT) -f libhttpd.mak CFG="libhttpd - Win32 $(LONG)" RECURSE=0 $(CTARGET)
85          $(MAKE) $(MAKEOPT) -f Apache.mak CFG="Apache - Win32 $(LONG)" RECURSE=0 $(CTARGET)
86         cd modules\aaa
87          $(MAKE) $(MAKEOPT) -f mod_auth_anon.mak CFG="mod_auth_anon - Win32 $(LONG)" RECURSE=0 $(CTARGET)
88          $(MAKE) $(MAKEOPT) -f mod_auth_dbm.mak CFG="mod_auth_dbm - Win32 $(LONG)" RECURSE=0 $(CTARGET)
89          $(MAKE) $(MAKEOPT) -f mod_auth_digest.mak CFG="mod_auth_digest - Win32 $(LONG)" RECURSE=0 $(CTARGET)
90         cd ..\..
91         cd modules\cache
92          $(MAKE) $(MAKEOPT) -f mod_file_cache.mak CFG="mod_file_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET)
93         cd ..\..
94         cd modules\dav\main
95          $(MAKE) $(MAKEOPT) -f mod_dav.mak CFG="mod_dav - Win32 $(LONG)" RECURSE=0 $(CTARGET)
96         cd ..\..\..
97         cd modules\dav\fs
98          $(MAKE) $(MAKEOPT) -f mod_dav_fs.mak CFG="mod_dav_fs - Win32 $(LONG)" RECURSE=0 $(CTARGET)
99         cd ..\..\..
100         cd modules\generators
101          $(MAKE) $(MAKEOPT) -f mod_info.mak CFG"=mod_info - Win32 $(LONG)" RECURSE=0 $(CTARGET)
102          $(MAKE) $(MAKEOPT) -f mod_status.mak CFG="mod_status - Win32 $(LONG)" RECURSE=0 $(CTARGET)
103         cd ..\..
104         cd modules\mappers
105          $(MAKE) $(MAKEOPT) -f mod_rewrite.mak CFG="mod_rewrite - Win32 $(LONG)" RECURSE=0 $(CTARGET)
106          $(MAKE) $(MAKEOPT) -f mod_speling.mak CFG="mod_speling - Win32 $(LONG)" RECURSE=0 $(CTARGET)
107         cd ..\..
108         cd modules\metadata
109          $(MAKE) $(MAKEOPT) -f mod_cern_meta.mak CFG="mod_cern_meta - Win32 $(LONG)" RECURSE=0 $(CTARGET)
110          $(MAKE) $(MAKEOPT) -f mod_expires.mak CFG="mod_expires - Win32 $(LONG)" RECURSE=0 $(CTARGET)
111          $(MAKE) $(MAKEOPT) -f mod_headers.mak CFG="mod_headers - Win32 $(LONG)" RECURSE=0 $(CTARGET)
112          $(MAKE) $(MAKEOPT) -f mod_usertrack.mak CFG="mod_usertrack - Win32 $(LONG)" RECURSE=0 $(CTARGET)
113         cd ..\..
114 #       cd modules\proxy
115 #        $(MAKE) $(MAKEOPT) -f mod_proxy.mak CFG="mod_proxy - Win32 $(LONG)" RECURSE=0 $(CTARGET)
116 #       cd ..\..
117         cd support
118          $(MAKE) $(MAKEOPT) -f ab.mak CFG="ab - Win32 $(LONG)" RECURSE=0 $(CTARGET)
119          $(MAKE) $(MAKEOPT) -f htpasswd.mak CFG="htpasswd - Win32 $(LONG)" RECURSE=0 $(CTARGET)
120          $(MAKE) $(MAKEOPT) -f htdigest.mak CFG="htdigest - Win32 $(LONG)" RECURSE=0 $(CTARGET)
121          $(MAKE) $(MAKEOPT) -f logresolve.mak CFG="logresolve - Win32 $(LONG)" RECURSE=0 $(CTARGET)
122          $(MAKE) $(MAKEOPT) -f rotatelogs.mak CFG="rotatelogs - Win32 $(LONG)" RECURSE=0 $(CTARGET)
123         cd ..
124
125 _install:
126         -mkdir "$(INSTDIR)"
127         -mkdir "$(INSTDIR)\bin"
128         -mkdir "$(INSTDIR)\cgi-bin"
129         -mkdir "$(INSTDIR)\conf"
130         -mkdir "$(INSTDIR)\htdocs"
131         -mkdir "$(INSTDIR)\htdocs\manual"
132         -mkdir "$(INSTDIR)\icons"
133         -mkdir "$(INSTDIR)\include"
134         -mkdir "$(INSTDIR)\include\xml"
135         -mkdir "$(INSTDIR)\include\pcre"
136         -mkdir "$(INSTDIR)\lib"
137         -mkdir "$(INSTDIR)\libexec"
138         -mkdir "$(INSTDIR)\logs"
139         -mkdir "$(INSTDIR)\modules"
140 #       -mkdir "$(INSTDIR)\proxy"
141         copy $(LONG)\Apache.exe "$(INSTDIR)\bin"
142         copy $(LONG)\libhttpd.dll "$(INSTDIR)\bin"
143         copy srclib\apr\$(LONG)\libapr.dll "$(INSTDIR)\bin"
144         copy srclib\apr-util\$(LONG)\libaprutil.dll "$(INSTDIR)\bin"
145         copy modules\aaa\$(LONG)\mod_auth_anon.so "$(INSTDIR)\modules"
146         copy modules\aaa\$(LONG)\mod_auth_dbm.so "$(INSTDIR)\modules"
147         copy modules\aaa\$(LONG)\mod_auth_digest.so "$(INSTDIR)\modules"
148         copy modules\cache\$(LONG)\mod_file_cache.so "$(INSTDIR)\modules"
149         copy modules\dav\fs\$(LONG)\mod_dav_fs.so "$(INSTDIR)\modules"
150         copy modules\dav\main\$(LONG)\mod_dav.so "$(INSTDIR)\modules"
151         copy modules\generators\$(LONG)\mod_info.so "$(INSTDIR)\modules"
152         copy modules\generators\$(LONG)\mod_status.so "$(INSTDIR)\modules"
153         copy modules\mappers\$(LONG)\mod_rewrite.so "$(INSTDIR)\modules"
154         copy modules\mappers\$(LONG)\mod_speling.so "$(INSTDIR)\modules"
155         copy modules\metadata\$(LONG)\mod_cern_meta.so "$(INSTDIR)\modules"
156         copy modules\metadata\$(LONG)\mod_expires.so "$(INSTDIR)\modules"
157         copy modules\metadata\$(LONG)\mod_headers.so "$(INSTDIR)\modules"
158         copy modules\metadata\$(LONG)\mod_usertrack.so "$(INSTDIR)\modules"
159 #       copy modules\proxy\$(LONG)\mod_proxy.so "$(INSTDIR)\modules"
160         copy support\$(LONG)\ab.exe "$(INSTDIR)\bin"
161         copy support\$(LONG)\htpasswd.exe "$(INSTDIR)\bin"
162         copy support\$(LONG)\htdigest.exe "$(INSTDIR)\bin"
163         copy support\$(LONG)\logresolve.exe "$(INSTDIR)\bin"
164         copy support\$(LONG)\rotatelogs.exe "$(INSTDIR)\bin"
165         copy docs\cgi-examples\printenv "$(INSTDIR)\cgi-bin\printenv.pl"
166         xcopy docs\docroot "$(INSTDIR)\htdocs" /d < <<
167 A
168 <<
169         xcopy docs\manual "$(INSTDIR)\htdocs\manual" /s /d < <<
170 A
171 <<
172         xcopy include\*.h "$(INSTDIR)\include" /d < <<
173 A
174 <<
175         xcopy srclib\apr\include\*.h "$(INSTDIR)\include" /d < <<
176 A
177 <<
178         xcopy srclib\apr-util\include\*.h "$(INSTDIR)\include" /d < <<
179 A
180 <<
181         xcopy srclib\pcre\*.h "$(INSTDIR)\include\pcre" /d < <<
182 A
183 <<
184         xcopy docs\icons "$(INSTDIR)\icons" /s /d < <<
185 A
186 <<
187         copy srclib\apr\Lib$(SHORT)\apr.lib "$(INSTDIR)\lib"
188         copy srclib\apr-util\Lib$(SHORT)\aprutil.lib "$(INSTDIR)\lib"
189         copy srclib\pcre\Lib$(SHORT)\pcre.lib "$(INSTDIR)\lib"
190         copy srclib\pcre\Lib$(SHORT)\pcreposix.lib "$(INSTDIR)\lib"
191         copy srclib\apr\$(LONG)\libapr.lib "$(INSTDIR)\libexec"
192         copy srclib\apr\$(LONG)\libapr.exp "$(INSTDIR)\libexec"
193         copy srclib\apr-util\$(LONG)\libaprutil.lib "$(INSTDIR)\libexec"
194         copy srclib\apr-util\$(LONG)\libaprutil.exp "$(INSTDIR)\libexec"
195         copy $(LONG)\libhttpd.exp "$(INSTDIR)\libexec"
196         copy $(LONG)\libhttpd.lib "$(INSTDIR)\libexec"
197         copy modules\dav\main\$(LONG)\mod_dav.exp "$(INSTDIR)\libexec"
198         copy modules\dav\main\$(LONG)\mod_dav.lib "$(INSTDIR)\libexec"
199         copy docs\conf\magic "$(INSTDIR)\conf\magic.default"
200         if not exist "$(INSTDIR)\conf\magic" \
201             copy "$(INSTDIR)\conf\magic.default" "$(INSTDIR)\conf\magic"
202         copy docs\conf\mime.types "$(INSTDIR)\conf\mime.types.default"
203         if not exist "$(INSTDIR)\conf\mime.types" \
204             copy "$(INSTDIR)\conf\mime.types.default" "$(INSTDIR)\conf\mime.types"
205         awk -f <<script.awk "docs\conf\httpd-win.conf" "$(INSTDIR)\conf\httpd.default.conf" "$(INSTDIR)"
206     BEGIN { 
207         srcfl = ARGV[1];
208         dstfl = ARGV[2];
209         serverroot = ARGV[3];
210         gsub( /\\/, "/", serverroot );
211         while ( ( getline < srcfl ) > 0 ) {
212             gsub( /@@ServerRoot@@/, serverroot );
213             print $$0 > dstfl;
214         }
215     }
216 <<
217         if not exist "$(INSTDIR)\conf\httpd.conf" \
218             copy "$(INSTDIR)\conf\httpd.default.conf" "$(INSTDIR)\conf\httpd.conf"
219         awk -f <<script.awk "support\dbmmanage.in" >"$(INSTDIR)\bin\dbmmanage.pl"
220     { if ( $$0 ~ /^BEGIN { @AnyDBM_File::/ ) {
221           sub( /ISA = qw\(.*\)/, "ISA = qw(SDBM_File)" ); 
222       }
223       if ( $$0 !~ /^#!@perlbin@/ )
224           print $$0;
225     }
226 <<