Moved apache code into a folder to help prepare for packaging where we dont want...
[httpd-crcsyncproxy.git] / apache / modules / proxy / NWGNUproxy
blobcf625547b5503f200d106cdc6eb01b85ef629843
2 # Make sure all needed macro's are defined
6 # Get the 'head' of the build environment if necessary.  This includes default
7 # targets and paths to tools
10 ifndef EnvironmentDefined
11 include $(AP_WORK)\build\NWGNUhead.inc
12 endif
15 # These directories will be at the beginning of the include list, followed by
16 # INCDIRS
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)
31 # These flags will come after CFLAGS
33 XCFLAGS         += \
34                         $(EOLIST)
37 # These defines will come after DEFINES
39 XDEFINES        += \
40                         $(EOLIST)
43 # These flags will be added to the link.opt file
45 XLFLAGS         += \
46                         $(EOLIST)
49 # These values will be appended to the correct variables based on the value of
50 # RELEASE
52 ifeq "$(RELEASE)" "debug"
53 XINCDIRS        += \
54                         $(EOLIST)
56 XCFLAGS         += \
57                         $(EOLIST)
59 XDEFINES        += \
60                         $(EOLIST)
62 XLFLAGS         += \
63                         $(EOLIST)
64 endif
66 ifeq "$(RELEASE)" "noopt"
67 XINCDIRS        += \
68                         $(EOLIST)
70 XCFLAGS         += \
71                         $(EOLIST)
73 XDEFINES        += \
74                         $(EOLIST)
76 XLFLAGS         += \
77                         $(EOLIST)
78 endif
80 ifeq "$(RELEASE)" "release"
81 XINCDIRS        += \
82                         $(EOLIST)
84 XCFLAGS         += \
85                         $(EOLIST)
87 XDEFINES        += \
88                         $(EOLIST)
90 XLFLAGS         += \
91                         $(EOLIST)
92 endif
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.
99 NLM_NAME        = proxy
102 # This is used by the link '-desc ' directive.
103 # If left blank, NLM_NAME will be used.
105 NLM_DESCRIPTION = Apache $(VERSION_STR) Proxy Module
108 # This is used by the '-threadname' directive.  If left blank,
109 # NLM_NAME Thread will be used.
111 NLM_THREAD_NAME = Proxy Module
114 # If this is specified, it will override VERSION value in
115 # $(AP_WORK)\build\NWGNUenvironment.inc
117 NLM_VERSION     =
120 # If this is specified, it will override the default of 64K
122 NLM_STACK_SIZE  = 8192
126 # If this is specified it will be used by the link '-entry' directive
128 NLM_ENTRY_SYM   = _LibCPrelude
131 # If this is specified it will be used by the link '-exit' directive
133 NLM_EXIT_SYM    = _LibCPostlude
136 # If this is specified it will be used by the link '-check' directive
138 NLM_CHECK_SYM   =
141 # If these are specified it will be used by the link '-flags' directive
143 NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
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
150 XDCDATA         =
153 # If there is an NLM target, put it here
155 TARGET_nlm = \
156         $(OBJDIR)/proxy.nlm \
157         $(EOLIST)
160 # If there is an LIB target, put it here
162 TARGET_lib = \
163         $(EOLIST)
166 # These are the OBJ files needed to create the NLM target above.
167 # Paths must all use the '/' character
169 FILES_nlm_objs = \
170         $(OBJDIR)/mod_proxy.o \
171         $(OBJDIR)/proxy_util.o \
172         $(OBJDIR)/libprews.o \
173         $(EOLIST)
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.
179 FILES_nlm_libs = \
180         libcpre.o \
181         $(EOLIST)
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.
187 FILES_nlm_modules = \
188         aprlib \
189         libc \
190         $(EOLIST)
193 # If the nlm has a msg file, put it's path here
195 FILE_nlm_msg =
198 # If the nlm has a hlp file put it's path here
200 FILE_nlm_hlp =
203 # If this is specified, it will override $(NWOS)\copyright.txt.
205 FILE_nlm_copyright =
208 # Any additional imports go here
210 FILES_nlm_Ximports = \
211         @$(APR)/aprlib.imp \
212         @$(NWOS)/httpd.imp \
213         @libc.imp \
214         $(EOLIST)
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
223 # Any symbols exported to here
225 FILES_nlm_exports = \
226         proxy_module \
227         proxy_hook_scheme_handler \
228         proxy_hook_canon_handler \
229         proxy_hook_pre_request \
230         proxy_hook_post_request \
231         ap_proxy_ssl_enable \
232         ap_proxy_ssl_disable \
233         ap_proxy_conn_is_https \
234         ap_proxy_ssl_val \
235         proxy_run_fixups \
236         $(EOLIST)
239 # These are the OBJ files needed to create the LIB target above.
240 # Paths must all use the '/' character
242 FILES_lib_objs = \
243         $(EOLIST)
246 # implement targets and dependancies (leave this section alone)
249 libs :: $(OBJDIR) $(TARGET_lib)
251 nlms :: libs $(TARGET_nlm)
254 # Updated this target to create necessary directories and copy files to the
255 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
257 install :: nlms FORCE
260 # Any specialized rules here
263 vpath %.c ../arch/netware
266 # Include the 'tail' makefile that has targets that depend on variables defined
267 # in this makefile
270 include $(AP_WORK)\build\NWGNUtail.inc