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 SQLITE3_INC = $(SQLITE3SDK)/src
30 SQLITE3_IMP = $(SQLITE3SDK)/lsqlite3.imp
31 SQLITE3_LIB = $(SQLITE3SDK)/lsqlite3.lib
32 SQLITE3_NLM = lsqlite3
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
57 -DAPU_HAVE_SQLITE3=1 \
61 # These flags will be added to the link.opt file
73 # These values will be appended to the correct variables based on the value of
76 ifeq "$(RELEASE)" "debug"
90 ifeq "$(RELEASE)" "noopt"
104 ifeq "$(RELEASE)" "release"
119 # These are used by the link target if an NLM is being generated
120 # This is used by the link 'name' directive to name the nlm. If left blank
121 # TARGET_nlm (see below) will be used.
126 # This is used by the link '-desc ' directive.
127 # If left blank, NLM_NAME will be used.
129 NLM_DESCRIPTION = Apache Portability Runtime Library $(VERSION_STR) DBD SQLite3 Driver Module
132 # This is used by the '-threadname' directive. If left blank,
133 # NLM_NAME Thread will be used.
135 NLM_THREAD_NAME = dbdsqli3
138 # If this is specified, it will override VERSION value in
139 # $(AP_WORK)\build\NWGNUenvironment.inc
144 # If this is specified, it will override the default of 64K
146 NLM_STACK_SIZE = 8192
150 # If this is specified it will be used by the link '-entry' directive
152 NLM_ENTRY_SYM = _LibCPrelude
155 # If this is specified it will be used by the link '-exit' directive
157 NLM_EXIT_SYM = _LibCPostlude
160 # If this is specified it will be used by the link '-check' directive
165 # If these are specified it will be used by the link '-flags' directive
167 NLM_FLAGS = AUTOUNLOAD, PSEUDOPREEMPTION
170 # If this is specified it will be linked in with the XDCData option in the def
171 # file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
172 # by setting APACHE_UNIPROC in the environment
177 # If there is an NLM target, put it here
180 $(OBJDIR)\$(NLM_NAME).nlm \
184 # If there is an LIB target, put it here
190 # These are the OBJ files needed to create the NLM target above.
191 # Paths must all use the '/' character
194 $(OBJDIR)/apr_dbd_sqlite3.o \
198 # These are the LIB files needed to create the NLM target above.
199 # These will be added as a library command in the link.opt file.
205 ifeq ($(LINK_STATIC),1)
212 # These are the modules that the above NLM target depends on to load.
213 # These will be added as a module command in the link.opt file.
215 FILES_nlm_modules = \
220 ifneq ($(LINK_STATIC),1)
221 FILES_nlm_modules += \
227 # If the nlm has a msg file, put it's path here
232 # If the nlm has a hlp file put it's path here
237 # If this is specified, it will override $(NWOS)\copyright.txt.
242 # Any additional imports go here
244 FILES_nlm_Ximports = \
248 apr_dbd_mutex_unlock \
251 ifneq ($(LINK_STATIC),1)
252 FILES_nlm_Ximports += \
258 # Any symbols exported to here
260 FILES_nlm_exports = \
261 apr_dbd_sqlite3_driver \
265 # These are the OBJ files needed to create the LIB target above.
266 # Paths must all use the '/' character
272 # implement targets and dependancies (leave this section alone)
275 libs :: $(OBJDIR) $(TARGET_lib)
277 nlms :: libs $(TARGET_nlm)
280 # Updated this target to create necessary directories and copy files to the
281 # correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
283 install :: nlms FORCE
286 # Any specialized rules here
290 # Include the 'tail' makefile that has targets that depend on variables defined
294 include $(APR_WORK)\build\NWGNUtail.inc