]> granicus.if.org Git - apache/blob - modules/proxy/NWGNUproxy
Use temp_pool not pool for a string that's a temp
[apache] / modules / proxy / NWGNUproxy
1 #
2 # Make sure all needed macro's are defined
3 #
4
5 #
6 # Get the 'head' of the build environment if necessary.  This includes default
7 # targets and paths to tools
8 #
9
10 ifndef EnvironmentDefined
11 include $(AP_WORK)\build\NWGNUhead.inc
12 endif
13
14 #
15 # These directories will be at the beginning of the include list, followed by
16 # INCDIRS
17 #
18 XINCDIRS        += \
19                         $(AP_WORK)/include \
20                         $(NWOS) \
21                         $(AP_WORK)/modules/http \
22                         $(AP_WORK)/modules/arch/netware \
23                         $(AP_WORK)/modules/ssl \
24                         $(AP_WORK)/modules/generators \
25                         $(APR)/include \
26                         $(APRUTIL)/include \
27                         $(APR) \
28                         $(EOLIST)
29
30 #
31 # These flags will come after CFLAGS
32 #
33 XCFLAGS         += \
34                         $(EOLIST)
35
36 #
37 # These defines will come after DEFINES
38 #
39 XDEFINES        += \
40                         $(EOLIST)
41
42 #
43 # These flags will be added to the link.opt file
44 #
45 XLFLAGS         += \
46                         $(EOLIST)
47
48 #
49 # These values will be appended to the correct variables based on the value of
50 # RELEASE
51 #
52 ifeq "$(RELEASE)" "debug"
53 XINCDIRS        += \
54                         $(EOLIST)
55
56 XCFLAGS         += \
57                         $(EOLIST)
58
59 XDEFINES        += \
60                         $(EOLIST)
61
62 XLFLAGS         += \
63                         $(EOLIST)
64 endif
65
66 ifeq "$(RELEASE)" "noopt"
67 XINCDIRS        += \
68                         $(EOLIST)
69
70 XCFLAGS         += \
71                         $(EOLIST)
72
73 XDEFINES        += \
74                         $(EOLIST)
75
76 XLFLAGS         += \
77                         $(EOLIST)
78 endif
79
80 ifeq "$(RELEASE)" "release"
81 XINCDIRS        += \
82                         $(EOLIST)
83
84 XCFLAGS         += \
85                         $(EOLIST)
86
87 XDEFINES        += \
88                         $(EOLIST)
89
90 XLFLAGS         += \
91                         $(EOLIST)
92 endif
93
94 #
95 # These are used by the link target if an NLM is being generated
96 # This is used by the link 'name' directive to name the nlm.  If left blank
97 # TARGET_nlm (see below) will be used.
98 #
99 NLM_NAME        = proxy
100
101 #
102 # This is used by the link '-desc ' directive.
103 # If left blank, NLM_NAME will be used.
104 #
105 NLM_DESCRIPTION = Apache $(VERSION_STR) Proxy Module
106
107 #
108 # This is used by the '-threadname' directive.  If left blank,
109 # NLM_NAME Thread will be used.
110 #
111 NLM_THREAD_NAME = Proxy Module
112
113 #
114 # If this is specified, it will override VERSION value in
115 # $(AP_WORK)\build\NWGNUenvironment.inc
116 #
117 NLM_VERSION     =
118
119 #
120 # If this is specified, it will override the default of 64K
121 #
122 NLM_STACK_SIZE  = 8192
123
124
125 #
126 # If this is specified it will be used by the link '-entry' directive
127 #
128 NLM_ENTRY_SYM   = _LibCPrelude
129
130 #
131 # If this is specified it will be used by the link '-exit' directive
132 #
133 NLM_EXIT_SYM    = _LibCPostlude
134
135 #
136 # If this is specified it will be used by the link '-check' directive
137 #
138 NLM_CHECK_SYM   =
139
140 #
141 # If these are specified it will be used by the link '-flags' directive
142 #
143 NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
144
145 #
146 # If this is specified it will be linked in with the XDCData option in the def
147 # file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
148 # by setting APACHE_UNIPROC in the environment
149 #
150 XDCDATA         =
151
152 #
153 # If there is an NLM target, put it here
154 #
155 TARGET_nlm = \
156         $(OBJDIR)/proxy.nlm \
157         $(EOLIST)
158
159 #
160 # If there is an LIB target, put it here
161 #
162 TARGET_lib = \
163         $(EOLIST)
164
165 #
166 # These are the OBJ files needed to create the NLM target above.
167 # Paths must all use the '/' character
168 #
169 FILES_nlm_objs = \
170         $(OBJDIR)/mod_proxy.o \
171         $(OBJDIR)/proxy_util.o \
172         $(OBJDIR)/libprews.o \
173         $(EOLIST)
174
175 #
176 # These are the LIB files needed to create the NLM target above.
177 # These will be added as a library command in the link.opt file.
178 #
179 FILES_nlm_libs = \
180         libcpre.o \
181         $(EOLIST)
182
183 #
184 # These are the modules that the above NLM target depends on to load.
185 # These will be added as a module command in the link.opt file.
186 #
187 FILES_nlm_modules = \
188         aprlib \
189         libc \
190         $(EOLIST)
191
192 #
193 # If the nlm has a msg file, put it's path here
194 #
195 FILE_nlm_msg =
196
197 #
198 # If the nlm has a hlp file put it's path here
199 #
200 FILE_nlm_hlp =
201
202 #
203 # If this is specified, it will override $(NWOS)\copyright.txt.
204 #
205 FILE_nlm_copyright =
206
207 #
208 # Any additional imports go here
209 #
210 FILES_nlm_Ximports = \
211         @$(APR)/aprlib.imp \
212         @$(NWOS)/httpd.imp \
213         @libc.imp \
214         $(EOLIST)
215
216 # Don't link with Winsock if standard sockets are being used
217 ifndef USE_STDSOCKETS
218 FILES_nlm_Ximports += @ws2nlm.imp \
219         $(EOLIST)
220 endif
221
222 #
223 # Any symbols exported to here
224 #
225 FILES_nlm_exports = \
226         @$(OBJDIR)/mod_proxy.imp \
227         $(EOLIST)
228
229 #
230 # These are the OBJ files needed to create the LIB target above.
231 # Paths must all use the '/' character
232 #
233 FILES_lib_objs = \
234         $(EOLIST)
235
236 #
237 # implement targets and dependancies (leave this section alone)
238 #
239
240 libs :: $(OBJDIR) $(TARGET_lib)
241
242 nlms :: libs $(OBJDIR)/mod_proxy.imp $(TARGET_nlm)
243
244 #
245 # Updated this target to create necessary directories and copy files to the
246 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
247 #
248 install :: nlms FORCE
249
250 #
251 # Any specialized rules here
252 #
253
254 vpath %.c ../arch/netware
255
256 $(OBJDIR)/mod_proxy.imp:
257         @echo Creating $@
258         @echo # Exports of mod_proxy > $@
259         @echo   (AP$(VERSION_MAJMIN)) >> $@
260         @echo   proxy_module, >> $@
261         @echo   proxy_hook_canon_handler, >> $@
262         @echo   proxy_hook_post_request, >> $@
263         @echo   proxy_hook_pre_request, >> $@
264         @echo   proxy_hook_scheme_handler, >> $@
265         @echo   proxy_run_fixups, >> $@
266         @echo   ap_proxy_conn_is_https, >> $@
267         @echo   ap_proxy_ssl_enable, >> $@
268         @echo   ap_proxy_ssl_disable, >> $@
269         @echo   ap_proxy_ssl_val >> $@
270
271 #
272 # Include the 'tail' makefile that has targets that depend on variables defined
273 # in this makefile
274 #
275
276 include $(AP_WORK)\build\NWGNUtail.inc
277
278