bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / modules / metadata / NWGNUuniqueid
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                         $(APR)/include \
20                         $(APRUTIL)/include \
21                         $(AP_WORK)/include \
22                         $(NWOS) \
23                         $(EOLIST)
24
25 #
26 # These flags will come after CFLAGS
27 #
28 XCFLAGS         += \
29                         $(EOLIST)
30
31 #
32 # These defines will come after DEFINES
33 #
34 XDEFINES        += \
35                         $(EOLIST)
36
37 #
38 # These flags will be added to the link.opt file
39 #
40 XLFLAGS         += \
41                         $(EOLIST)
42
43 #
44 # These values will be appended to the correct variables based on the value of
45 # RELEASE
46 #
47 ifeq "$(RELEASE)" "debug"
48 XINCDIRS        += \
49                         $(EOLIST)
50
51 XCFLAGS         += \
52                         $(EOLIST)
53
54 XDEFINES        += \
55                         $(EOLIST)
56
57 XLFLAGS         += \
58                         $(EOLIST)
59 endif
60
61 ifeq "$(RELEASE)" "noopt"
62 XINCDIRS        += \
63                         $(EOLIST)
64
65 XCFLAGS         += \
66                         $(EOLIST)
67
68 XDEFINES        += \
69                         $(EOLIST)
70
71 XLFLAGS         += \
72                         $(EOLIST)
73 endif
74
75 ifeq "$(RELEASE)" "release"
76 XINCDIRS        += \
77                         $(EOLIST)
78
79 XCFLAGS         += \
80                         $(EOLIST)
81
82 XDEFINES        += \
83                         $(EOLIST)
84
85 XLFLAGS         += \
86                         $(EOLIST)
87 endif
88
89 #
90 # These are used by the link target if an NLM is being generated
91 # This is used by the link 'name' directive to name the nlm.  If left blank
92 # TARGET_nlm (see below) will be used.
93 #
94 NLM_NAME        = uniqueid
95
96 #
97 # This is used by the link '-desc ' directive.
98 # If left blank, NLM_NAME will be used.
99 #
100 NLM_DESCRIPTION = Apache $(VERSION_STR) Unique ID Module
101
102 #
103 # This is used by the '-threadname' directive.  If left blank,
104 # NLM_NAME Thread will be used.
105 #
106 NLM_THREAD_NAME = Unique ID Module
107
108 #
109 # If this is specified, it will override VERSION value in
110 # $(AP_WORK)\build\NWGNUenvironment.inc
111 #
112 NLM_VERSION     =
113
114 #
115 # If this is specified, it will override the default of 64K
116 #
117 NLM_STACK_SIZE  = 8192
118
119
120 #
121 # If this is specified it will be used by the link '-entry' directive
122 #
123 NLM_ENTRY_SYM   = _LibCPrelude
124
125 #
126 # If this is specified it will be used by the link '-exit' directive
127 #
128 NLM_EXIT_SYM    = _LibCPostlude
129
130 #
131 # If this is specified it will be used by the link '-check' directive
132 #
133 NLM_CHECK_SYM   =
134
135 #
136 # If these are specified it will be used by the link '-flags' directive
137 #
138 NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
139
140 #
141 # If this is specified it will be linked in with the XDCData option in the def
142 # file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
143 # by setting APACHE_UNIPROC in the environment
144 #
145 XDCDATA         =
146
147 #
148 # If there is an NLM target, put it here
149 #
150 TARGET_nlm = \
151         $(OBJDIR)/uniqueid.nlm \
152         $(EOLIST)
153
154 #
155 # If there is an LIB target, put it here
156 #
157 TARGET_lib = \
158         $(EOLIST)
159
160 #
161 # These are the OBJ files needed to create the NLM target above.
162 # Paths must all use the '/' character
163 #
164 FILES_nlm_objs = \
165         $(OBJDIR)/mod_unique_id.o \
166         $(OBJDIR)/libprews.o \
167         $(EOLIST)
168
169 #
170 # These are the LIB files needed to create the NLM target above.
171 # These will be added as a library command in the link.opt file.
172 #
173 FILES_nlm_libs = \
174         libcpre.o \
175         $(EOLIST)
176
177 #
178 # These are the modules that the above NLM target depends on to load.
179 # These will be added as a module command in the link.opt file.
180 #
181 FILES_nlm_modules = \
182         aprlib \
183         libc \
184         $(EOLIST)
185
186 #
187 # If the nlm has a msg file, put it's path here
188 #
189 FILE_nlm_msg =
190
191 #
192 # If the nlm has a hlp file put it's path here
193 #
194 FILE_nlm_hlp =
195
196 #
197 # If this is specified, it will override $(NWOS)\copyright.txt.
198 #
199 FILE_nlm_copyright =
200
201 #
202 # Any additional imports go here
203 #
204 FILES_nlm_Ximports = \
205         @$(APR)/aprlib.imp \
206         @$(NWOS)/httpd.imp \
207         @libc.imp \
208         @ws2nlm.imp \
209         $(EOLIST)
210
211 #
212 # Any symbols exported to here
213 #
214 FILES_nlm_exports = \
215         unique_id_module \
216         $(EOLIST)
217
218 #
219 # These are the OBJ files needed to create the LIB target above.
220 # Paths must all use the '/' character
221 #
222 FILES_lib_objs = \
223         $(EOLIST)
224
225 #
226 # implement targets and dependancies (leave this section alone)
227 #
228
229 libs :: $(OBJDIR) $(TARGET_lib)
230
231 nlms :: libs $(TARGET_nlm)
232
233 #
234 # Updated this target to create necessary directories and copy files to the
235 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
236 #
237 install :: nlms FORCE
238
239 #
240 # Any specialized rules here
241 #
242
243 $(OBJDIR)/%.o: ../arch/netware/%.c $(OBJDIR)\$(NLM_NAME)_cc.opt
244         @echo compiling $<
245         $(CC) $< -o=$(OBJDIR)\$(@F) @$(OBJDIR)\$(NLM_NAME)_cc.opt
246
247 #
248 # Include the 'tail' makefile that has targets that depend on variables defined
249 # in this makefile
250 #
251
252 include $(AP_WORK)\build\NWGNUtail.inc
253
254