2 # Declare the sub-directories to be built here
9 # Get the 'head' of the build environment. This includes default targets and
13 ifndef EnvironmentDefined
14 include $(APR_WORK)\build\NWGNUhead.inc
17 #include $(APR)\build\NWGNUcustom.inc
20 # build this level's files
23 # Make sure all needed macro's are defined
28 # for now defined here - should finally go into build/NWGNUenvironment.inc
29 MYSQL_INC = $(MYSQLSDK)/include
30 MYSQL_IMP = $(MYSQLSDK)/lib/libmysql.imp
31 MYSQL_LIB = $(MYSQLSDK)/lib/libmysqlclient_r.lib $(MYSQLSDK)/lib/libz.lib
35 # These directories will be at the beginning of the include list, followed by
39 $(APR)/include/arch/netware \
42 $(APRUTIL)/include/private \
48 # These flags will come after CFLAGS
54 # These defines will come after DEFINES
62 # These flags will be added to the link.opt file
74 # These values will be appended to the correct variables based on the value of
77 ifeq "$(RELEASE)" "debug"
91 ifeq "$(RELEASE)" "noopt"
105 ifeq "$(RELEASE)" "release"
120 # These are used by the link target if an NLM is being generated
121 # This is used by the link 'name' directive to name the nlm. If left blank
122 # TARGET_nlm (see below) will be used.
127 # This is used by the link '-desc ' directive.
128 # If left blank, NLM_NAME will be used.
130 NLM_DESCRIPTION = Apache Portability Runtime Library $(VERSION_STR) DBD MySQL Driver Module
133 # This is used by the '-threadname' directive. If left blank,
134 # NLM_NAME Thread will be used.
136 NLM_THREAD_NAME = dbdmysql
139 # If this is specified, it will override VERSION value in
140 # $(AP_WORK)\build\NWGNUenvironment.inc
145 # If this is specified, it will override the default of 64K
147 NLM_STACK_SIZE = 8192
151 # If this is specified it will be used by the link '-entry' directive
153 NLM_ENTRY_SYM = _LibCPrelude
156 # If this is specified it will be used by the link '-exit' directive
158 NLM_EXIT_SYM = _LibCPostlude
161 # If this is specified it will be used by the link '-check' directive
166 # If these are specified it will be used by the link '-flags' directive
168 NLM_FLAGS = AUTOUNLOAD, PSEUDOPREEMPTION
171 # If this is specified it will be linked in with the XDCData option in the def
172 # file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
173 # by setting APACHE_UNIPROC in the environment
178 # If there is an NLM target, put it here
181 $(OBJDIR)\$(NLM_NAME).nlm \
185 # If there is an LIB target, put it here
191 # These are the OBJ files needed to create the NLM target above.
192 # Paths must all use the '/' character
195 $(OBJDIR)/apr_dbd_mysql.o \
199 # These are the LIB files needed to create the NLM target above.
200 # These will be added as a library command in the link.opt file.
206 ifeq ($(LINK_STATIC),1)
213 # These are the modules that the above NLM target depends on to load.
214 # These will be added as a module command in the link.opt file.
216 FILES_nlm_modules = \
221 ifneq ($(LINK_STATIC),1)
222 FILES_nlm_modules += \
228 # If the nlm has a msg file, put it's path here
233 # If the nlm has a hlp file put it's path here
238 # If this is specified, it will override $(NWOS)\copyright.txt.
243 # Any additional imports go here
245 FILES_nlm_Ximports = \
250 ifneq ($(LINK_STATIC),1)
251 FILES_nlm_Ximports += \
257 # Any symbols exported to here
259 FILES_nlm_exports = \
260 apr_dbd_mysql_driver \
264 # These are the OBJ files needed to create the LIB target above.
265 # Paths must all use the '/' character
271 # implement targets and dependancies (leave this section alone)
274 libs :: $(OBJDIR) $(TARGET_lib)
276 nlms :: libs $(TARGET_nlm)
279 # Updated this target to create necessary directories and copy files to the
280 # correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
282 install :: nlms FORCE
285 # Any specialized rules here
289 # Include the 'tail' makefile that has targets that depend on variables defined
293 include $(APR_WORK)\build\NWGNUtail.inc