]> granicus.if.org Git - apache/blob - modules/session/NWGNUsession
Use temp_pool not pool for a string that's a temp
[apache] / modules / session / NWGNUsession
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        = session
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) Session 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 = Session 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)/$(NLM_NAME).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_session.o \
171         $(EOLIST)
172
173 #
174 # These are the LIB files needed to create the NLM target above.
175 # These will be added as a library command in the link.opt file.
176 #
177 FILES_nlm_libs = \
178         libcpre.o \
179         $(EOLIST)
180
181 #
182 # These are the modules that the above NLM target depends on to load.
183 # These will be added as a module command in the link.opt file.
184 #
185 FILES_nlm_modules = \
186         aprlib \
187         libc \
188         $(EOLIST)
189
190 #
191 # If the nlm has a msg file, put it's path here
192 #
193 FILE_nlm_msg =
194
195 #
196 # If the nlm has a hlp file put it's path here
197 #
198 FILE_nlm_hlp =
199
200 #
201 # If this is specified, it will override $(NWOS)\copyright.txt.
202 #
203 FILE_nlm_copyright =
204
205 #
206 # Any additional imports go here
207 #
208 FILES_nlm_Ximports = \
209         @$(APR)/aprlib.imp \
210         @$(NWOS)/httpd.imp \
211         @libc.imp \
212         $(EOLIST)
213
214 #
215 # Any symbols exported to here
216 #
217 FILES_nlm_exports = \
218         session_module \
219         ap_hook_session_decode \
220         ap_hook_session_encode \
221         ap_hook_session_load \
222         ap_hook_session_save \
223         $(EOLIST)
224
225 #
226 # These are the OBJ files needed to create the LIB target above.
227 # Paths must all use the '/' character
228 #
229 FILES_lib_objs = \
230         $(EOLIST)
231
232 #
233 # implement targets and dependancies (leave this section alone)
234 #
235
236 libs :: $(OBJDIR) $(TARGET_lib)
237
238 nlms :: libs $(TARGET_nlm)
239
240 #
241 # Updated this target to create necessary directories and copy files to the
242 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
243 #
244 install :: nlms FORCE
245
246 #
247 # Any specialized rules here
248 #
249
250 vpath %.c ../arch/netware
251
252 #
253 # Include the 'tail' makefile that has targets that depend on variables defined
254 # in this makefile
255 #
256
257 include $(AP_WORK)\build\NWGNUtail.inc
258
259