upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / support / NWGNUrotlogs
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                         $(APR)/misc/netware \
21                         $(NWOS) \
22                         $(EOLIST)
23
24 #
25 # These flags will come after CFLAGS
26 #
27 XCFLAGS         += \
28                         $(EOLIST)
29
30 #
31 # These defines will come after DEFINES
32 #
33 XDEFINES        += \
34                         $(EOLIST)
35
36 #
37 # These flags will be added to the link.opt file
38 #
39 XLFLAGS         += \
40                         $(EOLIST)
41
42 #
43 # These values will be appended to the correct variables based on the value of
44 # RELEASE
45 #
46 ifeq "$(RELEASE)" "debug"
47 XINCDIRS        += \
48                         $(EOLIST)
49
50 XCFLAGS         += \
51                         $(EOLIST)
52
53 XDEFINES        += \
54                         $(EOLIST)
55
56 XLFLAGS         += \
57                         $(EOLIST)
58 endif
59
60 ifeq "$(RELEASE)" "noopt"
61 XINCDIRS        += \
62                         $(EOLIST)
63
64 XCFLAGS         += \
65                         $(EOLIST)
66
67 XDEFINES        += \
68                         $(EOLIST)
69
70 XLFLAGS         += \
71                         $(EOLIST)
72 endif
73
74 ifeq "$(RELEASE)" "release"
75 XINCDIRS        += \
76                         $(EOLIST)
77
78 XCFLAGS         += \
79                         $(EOLIST)
80
81 XDEFINES        += \
82                         $(EOLIST)
83
84 XLFLAGS         += \
85                         $(EOLIST)
86 endif
87
88 #
89 # These are used by the link target if an NLM is being generated
90 # This is used by the link 'name' directive to name the nlm.  If left blank
91 # TARGET_nlm (see below) will be used.
92 #
93 NLM_NAME        = rotlogs
94
95 #
96 # This is used by the link '-desc ' directive.
97 # If left blank, NLM_NAME will be used.
98 #
99 NLM_DESCRIPTION = Apache $(VERSION_STR) Log Rotation Utility for NetWare
100
101 #
102 # This is used by the '-threadname' directive.  If left blank,
103 # NLM_NAME Thread will be used.
104 #
105 NLM_THREAD_NAME = rotlogs
106
107 #
108 # This is used by the '-screenname' directive.  If left blank,
109 # 'Apache for NetWare' Thread will be used.
110 #
111 NLM_SCREEN_NAME = DEFAULT
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  = 98304
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, MULTIPLE
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)/rotlogs.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)/rotatelogs.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         @libc.imp \
211         $(EOLIST)
212
213 #
214 # Any symbols exported to here
215 #
216 FILES_nlm_exports = \
217         $(EOLIST)
218
219 #
220 # These are the OBJ files needed to create the LIB target above.
221 # Paths must all use the '/' character
222 #
223 FILES_lib_objs = \
224         $(EOLIST)
225
226 #
227 # implement targets and dependancies (leave this section alone)
228 #
229
230 libs :: $(OBJDIR) $(TARGET_lib)
231
232 nlms :: libs $(TARGET_nlm)
233
234 #
235 # Updated this target to create necessary directories and copy files to the
236 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
237 #
238 install :: nlms FORCE
239
240 #
241 # Any specialized rules here
242 #
243
244 #
245 # Include the 'tail' makefile that has targets that depend on variables defined
246 # in this makefile
247 #
248
249 include $(AP_WORK)\build\NWGNUtail.inc
250
251