]> granicus.if.org Git - apache/blob - NWGNUmakefile
fix references / update transformation
[apache] / NWGNUmakefile
1 #
2 # Declare the sub-directories to be built here
3 #
4
5 SUBDIRS = \
6         srclib\apr \
7         build \
8         support \
9         modules \
10         $(EOLIST) 
11
12 #
13 # Get the 'head' of the build environment.  This includes default targets and
14 # paths to tools
15 #
16
17 include $(AP_WORK)\build\NWGNUhead.inc
18
19 #
20 # build this level's files
21
22 #
23 # Make sure all needed macro's are defined
24 #
25
26 #
27 # These directories will be at the beginning of the include list, followed by
28 # INCDIRS
29 #
30 XINCDIRS        += \
31                         $(AP_WORK)/srclib/apr/include \
32                         $(AP_WORK)/srclib/include/arch/NetWare \
33                         $(AP_WORK)/srclib/apr-util/include \
34                         $(AP_WORK)/include \
35                         $(AP_WORK)/modules/filters/ \
36                         $(AP_WORK)/modules/generators/ \
37                         $(AP_WORK)/modules/http/ \
38                         $(AP_WORK)/modules/loggers/ \
39                         $(AP_WORK)/modules/mappers/ \
40                         $(AP_WORK)/modules/proxy/ \
41                         $(AP_WORK)/os/NetWare \
42                         $(AP_WORK)/server/mpm/NetWare \
43                         $(AP_WORK)/srclib/pcre \
44                         $(NWOS) \
45                         $(EOLIST)
46
47 #
48 # These flags will come after CFLAGS
49 #
50 XCFLAGS         += \
51                         $(EOLIST)
52
53 #
54 # These defines will come after DEFINES
55 #
56 XDEFINES        += \
57                         $(EOLIST)
58
59 #
60 # These flags will be added to the link.opt file
61 #
62 XLFLAGS         += \
63                         $(EOLIST)
64
65 #
66 # These values will be appended to the correct variables based on the value of
67 # RELEASE
68 #
69 ifeq "$(RELEASE)" "debug"
70 XINCDIRS        += \
71                         $(EOLIST)
72
73 XCFLAGS         += \
74                         $(EOLIST)
75
76 XDEFINES        += \
77                         $(EOLIST)
78
79 XLFLAGS         += \
80                         $(EOLIST)
81 endif
82
83 ifeq "$(RELEASE)" "noopt"
84 XINCDIRS        += \
85                         $(EOLIST)
86
87 XCFLAGS         += \
88                         $(EOLIST)
89
90 XDEFINES        += \
91                         $(EOLIST)
92
93 XLFLAGS         += \
94                         $(EOLIST)
95 endif
96
97 ifeq "$(RELEASE)" "release"
98 XINCDIRS        += \
99                         $(EOLIST)
100
101 XCFLAGS         += \
102                         $(EOLIST)
103
104 XDEFINES        += \
105                         $(EOLIST)
106
107 XLFLAGS         += \
108                         $(EOLIST)
109 endif
110
111 #
112 # These are used by the link target if an NLM is being generated
113 # This is used by the link 'name' directive to name the nlm.  If left blank
114 # TARGET_nlm (see below) will be used.
115 #
116 NLM_NAME                = Apache2
117
118 #
119 # This is used by the link '-desc ' directive. 
120 # If left blank, NLM_NAME will be used.
121 #
122 NLM_DESCRIPTION = Apache Web Server $(VERSION_STR)
123
124 #
125 # This is used by the '-threadname' directive.  If left blank,
126 # NLM_NAME Thread will be used.
127 #
128 NLM_THREAD_NAME = Apache
129
130 #
131 # This is used by the '-screenname' directive.  If left blank,
132 # 'Apache for NetWare' Thread will be used.
133 #
134 NLM_SCREEN_NAME = Apache $(VERSION_STR) for NetWare
135
136
137 #
138 # If this is specified, it will override VERSION value in 
139 # $(AP_WORK)\build\NWGNUenvironment.inc
140 #
141 NLM_VERSION             =
142
143 #
144 # If this is specified, it will override the default of 64K
145 #
146 NLM_STACK_SIZE  = 65536
147  
148
149 #
150 # If this is specified it will be used by the link '-entry' directive
151 #
152 NLM_ENTRY_SYM   = _LibCPrelude
153
154 #
155 # If this is specified it will be used by the link '-exit' directive
156 #
157 NLM_EXIT_SYM    = _LibCPostlude
158
159 #
160 # If this is specified it will be used by the link '-check' directive
161 #
162 NLM_CHECK_SYM   = _LibCCheckUnload
163
164 #
165 # If these are specified it will be used by the link '-flags' directive
166 #
167 NLM_FLAGS               =  PSEUDOPREEMPTION
168
169 #
170 # If this is specified it will be linked in with the XDCData option in the def 
171 # file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
172 # by setting APACHE_UNIPROC in the environment
173 #
174 XDCDATA         = 
175
176 #
177 # If there is an NLM target, put it here
178 #
179 TARGET_nlm = \
180         $(OBJDIR)/Apache2.nlm \
181         $(EOLIST)
182
183 #
184 # If there is an LIB target, put it here
185 #
186 TARGET_lib = \
187         $(EOLIST)
188
189 #
190 # These are the OBJ files needed to create the NLM target above.
191 # Paths must all use the '/' character
192 #
193 FILES_nlm_objs = \
194         $(OBJDIR)/buildmark.o \
195         $(OBJDIR)/config.o \
196         $(OBJDIR)/connection.o \
197         $(OBJDIR)/core.o \
198         $(OBJDIR)/eoc_bucket.o \
199         $(OBJDIR)/error_bucket.o \
200         $(OBJDIR)/http_core.o \
201         $(OBJDIR)/http_protocol.o \
202         $(OBJDIR)/http_request.o \
203         $(OBJDIR)/listen.o \
204         $(OBJDIR)/log.o \
205         $(OBJDIR)/main.o \
206         $(OBJDIR)/mod_authz_host.o \
207         $(OBJDIR)/mod_actions.o \
208         $(OBJDIR)/mod_alias.o \
209         $(OBJDIR)/mod_asis.o \
210         $(OBJDIR)/mod_autoindex.o \
211         $(OBJDIR)/mod_cgi.o \
212         $(OBJDIR)/mod_dir.o \
213         $(OBJDIR)/mod_env.o \
214         $(OBJDIR)/mod_imap.o \
215         $(OBJDIR)/mod_include.o \
216         $(OBJDIR)/mod_log_config.o \
217         $(OBJDIR)/mod_mime.o \
218         $(OBJDIR)/mod_negotiation.o \
219         $(OBJDIR)/mod_netware.o \
220         $(OBJDIR)/mod_nw_ssl.o \
221         $(OBJDIR)/mod_setenvif.o \
222         $(OBJDIR)/mod_so.o \
223         $(OBJDIR)/mod_userdir.o \
224         $(OBJDIR)/modules.o \
225         $(OBJDIR)/mpm_common.o \
226         $(OBJDIR)/mpm_netware.o \
227         $(OBJDIR)/pcre.o \
228         $(OBJDIR)/pcreposix.o \
229         $(OBJDIR)/protocol.o \
230         $(OBJDIR)/provider.o \
231         $(OBJDIR)/request.o \
232         $(OBJDIR)/scoreboard.o \
233         $(OBJDIR)/util.o \
234         $(OBJDIR)/util_cfgtree.o \
235         $(OBJDIR)/util_charset.o \
236         $(OBJDIR)/util_debug.o \
237         $(OBJDIR)/util_filter.o \
238         $(OBJDIR)/util_md5.o \
239         $(OBJDIR)/util_nw.o \
240         $(OBJDIR)/util_script.o \
241         $(OBJDIR)/util_time.o \
242         $(OBJDIR)/util_xml.o \
243         $(OBJDIR)/vhost.o \
244         $(EOLIST)
245
246 #
247 # These are the LIB files needed to create the NLM target above.
248 # These will be added as a library command in the link.opt file.
249 #
250 FILES_nlm_libs = \
251         libcpre.o \
252         $(EOLIST)
253
254 #
255 # These are the modules that the above NLM target depends on to load.
256 # These will be added as a module command in the link.opt file.
257 #
258 FILES_nlm_modules = \
259         aprlib \
260         Libc \
261         $(EOLIST)
262
263 #
264 # If the nlm has a msg file, put it's path here
265 #
266 FILE_nlm_msg =
267  
268 #
269 # If the nlm has a hlp file put it's path here
270 #
271 FILE_nlm_hlp =
272
273 #
274 # If this is specified, it will override $(NWOS)\copyright.txt.
275 #
276 FILE_nlm_copyright =
277
278 #
279 # Any additional imports go here
280 #
281 FILES_nlm_Ximports = \
282         @netware.imp \
283         @$(APR)/aprlib.imp \
284         @libc.imp \
285         @ws2nlm.imp \
286         GetCurrentAddressSpace \
287         $(EOLIST)
288  
289 #   
290 # Any symbols exported to here
291 #
292 FILES_nlm_exports = \
293         @$(NWOS)/httpd.imp \
294         $(EOLIST)
295         
296 #   
297 # These are the OBJ files needed to create the LIB target above.
298 # Paths must all use the '/' character
299 #
300 FILES_lib_objs = \
301                 $(EOLIST)
302
303 #
304 # implement targets and dependancies (leave this section alone)
305 #
306
307 libs :: $(OBJDIR) $(TARGET_lib)
308
309 nlms :: libs $(TARGET_nlm)
310
311 #
312 # Updated this target to create necessary directories and copy files to the 
313 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
314 #
315 install :: nlms FORCE
316         -copy $(OBJDIR)\Apache2.nlm     $(INSTALL)\Apache2\*.*
317         -copy ABOUT_APACHE              $(INSTALL)\Apache2\*.*
318         -copy README                    $(INSTALL)\Apache2\*.*
319         -copy STATUS                    $(INSTALL)\Apache2\*.*
320         -copy LICENSE                   $(INSTALL)\Apache2\*.*
321         -copy CHANGES                   $(INSTALL)\Apache2\*.*
322         -copy support\dbmmanage.in      $(INSTALL)\Apache2\bin\dbmmanage.pl
323         -copy support\logresolve.pl.in  $(INSTALL)\Apache2\bin\logresolve.pl
324         -awk  -f build\mkconfnw.awk docs\conf\httpd-std.conf.in >$(INSTALL)\Apache2\conf\httpd.conf
325         -copy docs\conf\magic           $(INSTALL)\Apache2\conf\magic
326         -copy docs\conf\mime.types      $(INSTALL)\Apache2\conf\mime.types
327         -copy docs\cgi-examples\printenv $(INSTALL)\Apache2\cgi-bin\printenv.pl
328         @echo rem copying the docs directories > xc.bat
329         @echo xcopy docs\error $(INSTALL)\Apache2\error /E /Y >> xc.bat
330         @echo xcopy docs\docroot $(INSTALL)\Apache2\htdocs /E /Y >> xc.bat
331         @echo xcopy docs\icons $(INSTALL)\Apache2\icons /E /Y >> xc.bat
332         @echo xcopy docs\man $(INSTALL)\Apache2\man /E /Y >> xc.bat
333         @echo xcopy docs\manual $(INSTALL)\Apache2\manual /E /Y >> xc.bat
334         $(CMD) xc.bat
335         $(DEL) xc.bat
336
337
338     
339 installdev :: FORCE
340         -copy $(subst /,\,$(AP_WORK))\include\*.h           $(INSTALL)\Apache2\include\*.*
341         -copy $(subst /,\,$(AP_WORK))\os\netware\*.h        $(INSTALL)\Apache2\include\*.*
342         -copy $(subst /,\,$(NWOS))\*.imp                    $(INSTALL)\Apache2\lib\*.*
343         -copy $(subst /,\,$(APR))\include\*.h               $(INSTALL)\Apache2\include\*.*
344         -copy $(subst /,\,$(APRUTIL))\include\*.h           $(INSTALL)\Apache2\include\*.*
345         -copy $(subst /,\,$(APR))\*.imp                     $(INSTALL)\Apache2\lib\*.*
346         -copy $(subst /,\,$(NWOS))\*.xdc                    $(INSTALL)\Apache2\lib\*.*
347     
348 #
349 # Any specialized rules here
350 #
351
352 $(OBJDIR)/%.o: server/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
353         @echo compiling $<
354         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
355
356 $(OBJDIR)/%.o: modules/arch/netware/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
357         @echo compiling $<
358         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
359
360 $(OBJDIR)/%.o: modules/http/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
361         @echo compiling $<
362         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
363
364 $(OBJDIR)/%.o: modules/aaa/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
365         @echo compiling $<
366         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
367
368 $(OBJDIR)/%.o: modules/mappers/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
369         @echo compiling $<
370         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
371
372 $(OBJDIR)/%.o: modules/generators/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
373         @echo compiling $<
374         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
375
376 $(OBJDIR)/%.o: modules/metadata/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
377         @echo compiling $<
378         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
379
380 $(OBJDIR)/%.o: modules/filters/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
381         @echo compiling $<
382         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
383
384 $(OBJDIR)/%.o: modules/loggers/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
385         @echo compiling $<
386         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
387
388 $(OBJDIR)/%.o: os/netware/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
389         @echo compiling $<
390         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
391
392 $(OBJDIR)/%.o: server/mpm/netware/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
393         @echo compiling $<
394         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
395
396 $(OBJDIR)/%.o: srclib/pcre/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
397         @echo compiling $<
398         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
399
400 #
401 # Include the 'tail' makefile that has targets that depend on variables defined
402 # in this makefile
403 #
404
405 include $(AP_WORK)\build\NWGNUtail.inc
406