267N/A# Declare the sub-directories to be built here
267N/A# Get the 'head' of the build environment. This includes default targets and
267N/A# build this level's files
267N/A# Make sure all needed macro's are defined
267N/A# These directories will be at the beginning of the include list, followed by
269N/A# These flags will come after CFLAGS
269N/A# These defines will come after DEFINES
269N/A# These values will be appended to the correct variables based on the value of
289N/Aifeq "$(RELEASE)" "debug"
269N/Aifeq "$(RELEASE)" "noopt"
373N/Aifeq "$(RELEASE)" "release"
269N/A# These are used by the link target if an NLM is being generated
373N/A# This is used by the link 'name' directive to name the nlm. If left blank
373N/A# TARGET_nlm (see below) will be used.
373N/A# This is used by the link '-desc ' directive.
373N/A# If left blank, NLM_NAME will be used.
269N/ANLM_DESCRIPTION = Apache $(VERSION_STR) DAV Database Lock Sub-Module
267N/A# This is used by the '-threadname' directive. If left blank,
267N/A# NLM_NAME Thread will be used.
267N/ANLM_THREAD_NAME = modDAVLK Thread
267N/A# If this is specified, it will override VERSION value in
267N/A# If this is specified, it will override the default of 64K
373N/A# If this is specified it will be used by the link '-entry' directive
373N/A# If this is specified it will be used by the link '-exit' directive
267N/A# If this is specified it will be used by the link '-check' directive
267N/A# If this is specified it will be used by the link '-flags' directive
373N/A# Declare all target files (you must add your files here)
267N/A# If there is an NLM target, put it here
267N/A# If there is an LIB target, put it here
267N/A# These are the OBJ files needed to create the NLM target above.
267N/A# Paths must all use the '/' character
267N/A# These are the LIB files needed to create the NLM target above.
267N/A# These will be added as a library command in the
link.opt file.
373N/A# These are the modules that the above NLM target depends on to load.
267N/A# If the nlm has a msg file, put it's path here
267N/A# If the nlm has a hlp file put it's path here
267N/A# Any additional imports go here
267N/A# Any symbols exported to here
267N/A# These are the OBJ files needed to create the LIB target above.
373N/A# Paths must all use the '/' character
267N/A# implement targets and dependancies (leave this section alone)
373N/Alibs :: $(OBJDIR) $(TARGET_lib)
267N/Anlms :: libs $(TARGET_nlm)
373N/A# Updated this target to create necessary directories and copy files to the
373N/A $(call COPY,$(OBJDIR)/*.nlm, $(INSTALL)/$(BASEDIR)/modules/)
267N/A# Any specialized rules here
373N/A# Include the 'tail' makefile that has targets that depend on variables defined