Use of pre_cleanups is not the default for reslists.
[apr-util.git] / ldap / NWGNUmakefile
blob3e8bbdad592d0093c2ca215ace75ac017c311014
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 $(APR_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                         $(APR)/include \
28                         $(APR)/include/arch/NetWare \
29                         $(APRUTIL)/include \
30                         $(APRUTIL)/include/private \
31                         $(LDAPSDK)/inc \
32                         $(EOLIST)
35 # These flags will come after CFLAGS
37 XCFLAGS         += \
38                         $(EOLIST)
41 # These defines will come after DEFINES
43 XDEFINES        += \
44                         $(EOLIST)
47 #LDAP client requires the use of Winsock
49 ifdef USE_STDSOCKETS
50 XDEFINES += -DUSE_WINSOCK \
51                         $(EOLIST)
52 endif
55 # These flags will be added to the link.opt file
57 XLFLAGS         += \
58                         $(EOLIST)
61 # These values will be appended to the correct variables based on the value of
62 # RELEASE
64 ifeq "$(RELEASE)" "debug"
65 XINCDIRS        += \
66                         $(EOLIST)
68 XCFLAGS         += \
69                         $(EOLIST)
71 XDEFINES        += \
72                         $(EOLIST)
74 XLFLAGS         += \
75                         $(EOLIST)
76 endif
78 ifeq "$(RELEASE)" "noopt"
79 XINCDIRS        += \
80                         $(EOLIST)
82 XCFLAGS         += \
83                         $(EOLIST)
85 XDEFINES        += \
86                         $(EOLIST)
88 XLFLAGS         += \
89                         $(EOLIST)
90 endif
92 ifeq "$(RELEASE)" "release"
93 XINCDIRS        += \
94                         $(EOLIST)
96 XCFLAGS         += \
97                         $(EOLIST)
99 XDEFINES        += \
100                         $(EOLIST)
102 XLFLAGS         += \
103                         $(EOLIST)
104 endif
107 # These are used by the link target if an NLM is being generated
108 # This is used by the link 'name' directive to name the nlm.  If left blank
109 # TARGET_nlm (see below) will be used.
111 NLM_NAME                = 
114 # This is used by the link '-desc ' directive. 
115 # If left blank, NLM_NAME will be used.
117 NLM_DESCRIPTION = 
120 # This is used by the '-threadname' directive.  If left blank,
121 # NLM_NAME Thread will be used.
123 NLM_THREAD_NAME = 
125 # If this is specified, it will override VERSION value in 
126 # $(APR_WORK)\build\NWGNUenvironment.inc
128 NLM_VERSION             =
131 # If this is specified, it will override the default of 64K
133 NLM_STACK_SIZE  = 
136 # If this is specified it will be used by the link '-entry' directive
138 NLM_ENTRY_SYM   = 
141 # If this is specified it will be used by the link '-exit' directive
143 NLM_EXIT_SYM    = 
146 # If this is specified it will be used by the link '-check' directive
148 NLM_CHECK_SYM   =
151 # If this is specified it will be used by the link '-flags' directive
153 NLM_FLAGS               =
156 # If this is specified it will be linked in with the XDCData option in the def 
157 # file instead of the default of $(APR)/misc/netware/apache.xdc.  XDCData can 
158 # be disabled by setting APACHE_UNIPROC in the environment
160 XDCDATA         = 
163 # Declare all target files (you must add your files here)
167 # If there is an NLM target, put it here
169 TARGET_nlm = \
170         $(EOLIST)
173 # If there is an LIB target, put it here
175 TARGET_lib = \
176         $(OBJDIR)/apuldap.lib \
177         $(EOLIST)
180 # These are the OBJ files needed to create the NLM target above.
181 # Paths must all use the '/' character
183 FILES_nlm_objs = \
184         $(EOLIST)
187 # These are the LIB files needed to create the NLM target above.
188 # These will be added as a library command in the link.opt file.
190 FILES_nlm_libs = \
191         $(EOLIST)
194 # These are the modules that the above NLM target depends on to load.
195 # These will be added as a module command in the link.opt file.
197 FILES_nlm_modules = \
198         $(EOLIST)
201 # If the nlm has a msg file, put it's path here
203 FILE_nlm_msg =
206 # If the nlm has a hlp file put it's path here
208 FILE_nlm_hlp =
211 # If this is specified, it will override the default copyright.
213 FILE_nlm_copyright =
216 # Any additional imports go here
218 FILES_nlm_Ximports = \
219         $(EOLIST)
221 #   
222 # Any symbols exported to here
224 FILES_nlm_exports = \
225         $(EOLIST)
226         
227 #   
228 # These are the OBJ files needed to create the LIB target above.
229 # Paths must all use the '/' character
231 FILES_lib_objs = \
232         $(OBJDIR)/apr_ldap_init.o \
233         $(OBJDIR)/apr_ldap_option.o \
234         $(OBJDIR)/apr_ldap_url.o \
235         $(OBJDIR)/apr_ldap_rebind.o \
236         $(EOLIST)
239 # implement targets and dependancies (leave this section alone)
242 libs :: $(OBJDIR) $(TARGET_lib)
244 nlms :: libs $(TARGET_nlm)
247 # Updated this target to create necessary directories and copy files to the 
248 # correct place.  (See $(APR_WORK)\build\NWGNUhead.inc for examples)
250 install :: nlms FORCE
253 # Any specialized rules here
257 # Include the 'tail' makefile that has targets that depend on variables defined
258 # in this makefile
261 include $(APR_WORK)\build\NWGNUtail.inc