switch to a 60 bit hash
[httpd-crcsyncproxy.git] / modules / session / NWGNUsession_cookie
blobb90950048a753539ed38a70c15469df88d944407
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        = session_cookie
102 # This is used by the link '-desc ' directive.
103 # If left blank, NLM_NAME will be used.
105 NLM_DESCRIPTION = Apache $(VERSION_STR) Session Cookie Module
108 # This is used by the '-threadname' directive.  If left blank,
109 # NLM_NAME Thread will be used.
111 NLM_THREAD_NAME = SessionCookie 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)/$(NLM_NAME).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_session_cookie.o \
171         $(EOLIST)
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.
177 FILES_nlm_libs = \
178         libcpre.o \
179         $(EOLIST)
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.
185 FILES_nlm_modules = \
186         aprlib \
187         libc \
188         session \
189         $(EOLIST)
192 # If the nlm has a msg file, put it's path here
194 FILE_nlm_msg =
197 # If the nlm has a hlp file put it's path here
199 FILE_nlm_hlp =
202 # If this is specified, it will override $(NWOS)\copyright.txt.
204 FILE_nlm_copyright =
207 # Any additional imports go here
209 FILES_nlm_Ximports = \
210         @$(APR)/aprlib.imp \
211         @$(NWOS)/httpd.imp \
212         @libc.imp \
213         ap_hook_session_load \
214         ap_hook_session_save \
215         $(EOLIST)
218 # Any symbols exported to here
220 FILES_nlm_exports = \
221         session_cookie_module \
222         $(EOLIST)
225 # These are the OBJ files needed to create the LIB target above.
226 # Paths must all use the '/' character
228 FILES_lib_objs = \
229         $(EOLIST)
232 # implement targets and dependancies (leave this section alone)
235 libs :: $(OBJDIR) $(TARGET_lib)
237 nlms :: libs $(TARGET_nlm)
240 # Updated this target to create necessary directories and copy files to the
241 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
243 install :: nlms FORCE
246 # Any specialized rules here
249 vpath %.c ../arch/netware
252 # Include the 'tail' makefile that has targets that depend on variables defined
253 # in this makefile
256 include $(AP_WORK)\build\NWGNUtail.inc