switch to a 60 bit hash
[httpd-crcsyncproxy.git] / modules / echo / NWGNUmakefile
blob13a5beac11d76d58bf585e2e558ea98d162f4081
2 # Declare the sub-directories to be built here
5 SUBDIRS = \
6         $(EOLIST)
9 # Get the 'head' of the build environment.  This includes default targets and
10 # paths to tools
13 include $(AP_WORK)\build\NWGNUhead.inc
16 # build this level's files
19 # Make sure all needed macro's are defined
23 # These directories will be at the beginning of the include list, followed by
24 # INCDIRS
26 XINCDIRS        += \
27                         $(AP_WORK)/include \
28                         $(NWOS) \
29                         $(AP_WORK)/modules/arch/netware \
30                         $(APR)/include \
31                         $(APRUTIL)/include \
32                         $(APR) \
33                         $(EOLIST)
36 # These flags will come after CFLAGS
38 XCFLAGS         += \
39                         $(EOLIST)
42 # These defines will come after DEFINES
44 XDEFINES        += \
45                         $(EOLIST)
48 # These flags will be added to the link.opt file
50 XLFLAGS         += \
51                         $(EOLIST)
54 # These values will be appended to the correct variables based on the value of
55 # RELEASE
57 ifeq "$(RELEASE)" "debug"
58 XINCDIRS        += \
59                         $(EOLIST)
61 XCFLAGS         += \
62                         $(EOLIST)
64 XDEFINES        += \
65                         $(EOLIST)
67 XLFLAGS         += \
68                         $(EOLIST)
69 endif
71 ifeq "$(RELEASE)" "noopt"
72 XINCDIRS        += \
73                         $(EOLIST)
75 XCFLAGS         += \
76                         $(EOLIST)
78 XDEFINES        += \
79                         $(EOLIST)
81 XLFLAGS         += \
82                         $(EOLIST)
83 endif
85 ifeq "$(RELEASE)" "release"
86 XINCDIRS        += \
87                         $(EOLIST)
89 XCFLAGS         += \
90                         $(EOLIST)
92 XDEFINES        += \
93                         $(EOLIST)
95 XLFLAGS         += \
96                         $(EOLIST)
97 endif
100 # These are used by the link target if an NLM is being generated
101 # This is used by the link 'name' directive to name the nlm.  If left blank
102 # TARGET_nlm (see below) will be used.
104 NLM_NAME        = echo
107 # This is used by the link '-desc ' directive.
108 # If left blank, NLM_NAME will be used.
110 NLM_DESCRIPTION = Apache $(VERSION_STR) Echo Module
113 # This is used by the '-threadname' directive.  If left blank,
114 # NLM_NAME Thread will be used.
116 NLM_THREAD_NAME = Echo Module
119 # If this is specified, it will override VERSION value in
120 # $(AP_WORK)\build\NWGNUenvironment.inc
122 NLM_VERSION     =
125 # If this is specified, it will override the default of 64K
127 NLM_STACK_SIZE  = 8192
131 # If this is specified it will be used by the link '-entry' directive
133 NLM_ENTRY_SYM   = _LibCPrelude
136 # If this is specified it will be used by the link '-exit' directive
138 NLM_EXIT_SYM    = _LibCPostlude
141 # If this is specified it will be used by the link '-check' directive
143 NLM_CHECK_SYM   =
146 # If these are specified it will be used by the link '-flags' directive
148 NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
151 # If this is specified it will be linked in with the XDCData option in the def
152 # file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
153 # by setting APACHE_UNIPROC in the environment
155 XDCDATA         =
158 # If there is an NLM target, put it here
160 TARGET_nlm = \
161         $(OBJDIR)/echo.nlm \
162         $(EOLIST)
165 # If there is an LIB target, put it here
167 TARGET_lib = \
168         $(EOLIST)
171 # These are the OBJ files needed to create the NLM target above.
172 # Paths must all use the '/' character
174 FILES_nlm_objs = \
175         $(OBJDIR)/mod_echo.o \
176         $(EOLIST)
179 # These are the LIB files needed to create the NLM target above.
180 # These will be added as a library command in the link.opt file.
182 FILES_nlm_libs = \
183         libcpre.o \
184         $(EOLIST)
187 # These are the modules that the above NLM target depends on to load.
188 # These will be added as a module command in the link.opt file.
190 FILES_nlm_modules = \
191         aprlib \
192         libc \
193         $(EOLIST)
196 # If the nlm has a msg file, put it's path here
198 FILE_nlm_msg =
201 # If the nlm has a hlp file put it's path here
203 FILE_nlm_hlp =
206 # If this is specified, it will override $(NWOS)\copyright.txt.
208 FILE_nlm_copyright =
211 # Any additional imports go here
213 FILES_nlm_Ximports = \
214         @$(APR)/aprlib.imp \
215         @$(NWOS)/httpd.imp \
216         @libc.imp \
217         $(EOLIST)
220 # Any symbols exported to here
222 FILES_nlm_exports = \
223         echo_module \
224         $(EOLIST)
227 # These are the OBJ files needed to create the LIB target above.
228 # Paths must all use the '/' character
230 FILES_lib_objs = \
231         $(EOLIST)
234 # implement targets and dependancies (leave this section alone)
237 libs :: $(OBJDIR) $(TARGET_lib)
239 nlms :: libs $(TARGET_nlm)
242 # Updated this target to create necessary directories and copy files to the
243 # correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
245 install :: nlms FORCE
246         copy $(OBJDIR)\*.nlm $(INSTALL)\$(BASEDIR)\modules\*.*
249 # Any specialized rules here
253 # Include the 'tail' makefile that has targets that depend on variables defined
254 # in this makefile
257 include $(AP_WORK)\build\NWGNUtail.inc