2
# Make sure all needed macro's are defined
6
# Get the 'head' of the build environment if necessary. This includes default
7
# targets and paths to tools
10
ifndef EnvironmentDefined
11
include $(APR_WORK)\build\NWGNUhead.inc
15
# These directories will be at the beginning of the include list, followed by
20
$(APR_WORK)/include/arch/NetWare \
24
# These flags will come after CFLAGS
30
# These defines will come after DEFINES
36
# These flags will be added to the link.opt file
42
# These values will be appended to the correct variables based on the value of
45
ifeq "$(RELEASE)" "debug"
59
ifeq "$(RELEASE)" "noopt"
73
ifeq "$(RELEASE)" "release"
88
# These are used by the link target if an NLM is being generated
89
# This is used by the link 'name' directive to name the nlm. If left blank
90
# TARGET_nlm (see below) will be used.
94
# This is used by the link '-desc ' directive.
95
# If left blank, NLM_NAME will be used.
97
NLM_DESCRIPTION = NLM is to test the atomic functions
100
# This is used by the '-threadname' directive. If left blank,
101
# NLM_NAME Thread will be used.
103
NLM_THREAD_NAME = testatmc
106
# This is used by the '-screenname' directive. If left blank,
107
# 'Apache for NetWare' Thread will be used.
109
NLM_SCREEN_NAME = testatmc
112
# If this is specified, it will override VERSION value in
113
# $(APR_WORK)\build\NWGNUenvironment.inc
118
# If this is specified, it will override the default of 64K
123
# If this is specified it will be used by the link '-entry' directive
125
NLM_ENTRY_SYM = _LibCPrelude
128
# If this is specified it will be used by the link '-exit' directive
130
NLM_EXIT_SYM = _LibCPostlude
133
# If this is specified it will be used by the link '-check' directive
138
# If this is specified it will be used by the link '-flags' directive
140
NLM_FLAGS = AUTOUNLOAD, PSEUDOPREEMPTION
143
# If this is specified it will be linked in with the XDCData option in the def
144
# file instead of the default of $(APR)/misc/netware/apache.xdc. XDCData can
145
# be disabled by setting APACHE_UNIPROC in the environment
150
# Declare all target files (you must add your files here)
154
# If there is an NLM target, put it here
157
$(OBJDIR)/testatmc.nlm \
161
# If there is an LIB target, put it here
167
# These are the OBJ files needed to create the NLM target above.
168
# Paths must all use the '/' character
171
$(OBJDIR)/testatomic.o \
172
$(OBJDIR)/nw_misc.o \
178
# These are the LIB files needed to create the NLM target above.
179
# These will be added as a library command in the link.opt file.
186
# These are the modules that the above NLM target depends on to load.
187
# These will be added as a module command in the link.opt file.
189
FILES_nlm_modules = \
195
# If the nlm has a msg file, put it's path here
200
# If the nlm has a hlp file put it's path here
205
# If this is specified, it will override the default copyright.
210
# Any additional imports go here
212
FILES_nlm_Ximports = \
218
# Any symbols exported to here
220
FILES_nlm_exports = \
224
# These are the OBJ files needed to create the LIB target above.
225
# Paths must all use the '/' character
231
# implement targets and dependancies (leave this section alone)
234
libs :: $(OBJDIR) $(TARGET_lib)
236
nlms :: libs $(TARGET_nlm)
239
# Updated this target to create necessary directories and copy files to the
240
# correct place. (See $(APR_WORK)\build\NWGNUhead.inc for examples)
242
install :: nlms FORCE
245
# Any specialized rules here
250
# Include the 'tail' makefile that has targets that depend on variables defined
254
include $(APR_WORK)\build\NWGNUtail.inc