NWGNUauthnsocache revision b387b9d37fc71c534f4718777454a8f5a1169017
2818N/A#
2818N/A# Make sure all needed macro's are defined
2818N/A#
2818N/A
2818N/A#
2818N/A# Get the 'head' of the build environment if necessary. This includes default
2818N/A# targets and paths to tools
2818N/A#
2818N/A
2818N/Aifndef EnvironmentDefined
2818N/Ainclude $(AP_WORK)\build\NWGNUhead.inc
2818N/Aendif
2818N/A
2818N/A#
2818N/A# These directories will be at the beginning of the include list, followed by
2818N/A# INCDIRS
2818N/A#
2818N/AXINCDIRS += \
2818N/A $(APR)/include \
2818N/A $(APRUTIL)/include \
2818N/A $(AP_WORK)/include \
2818N/A $(NWOS) \
5466N/A $(EOLIST)
2818N/A
2818N/A#
2818N/A# These flags will come after CFLAGS
2818N/A#
6444N/AXCFLAGS += \
2818N/A $(EOLIST)
2818N/A
2818N/A#
2818N/A# These defines will come after DEFINES
6444N/A#
2818N/AXDEFINES += \
3869N/A $(EOLIST)
2818N/A
2818N/A#
6444N/A# These flags will be added to the link.opt file
2899N/A#
3817N/AXLFLAGS += \
3817N/A $(EOLIST)
3817N/A
3817N/A#
2818N/A# These values will be appended to the correct variables based on the value of
2818N/A# RELEASE
2818N/A#
2818N/Aifeq "$(RELEASE)" "debug"
2818N/AXINCDIRS += \
2818N/A $(EOLIST)
2818N/A
4976N/AXCFLAGS += \
2818N/A $(EOLIST)
2818N/A
2818N/AXDEFINES += \
2818N/A $(EOLIST)
2818N/A
2818N/AXLFLAGS += \
2818N/A $(EOLIST)
2818N/Aendif
2818N/A
6901N/Aifeq "$(RELEASE)" "noopt"
6901N/AXINCDIRS += \
6901N/A $(EOLIST)
2818N/A
2818N/AXCFLAGS += \
2818N/A $(EOLIST)
2818N/A
2818N/AXDEFINES += \
2818N/A $(EOLIST)
2818N/A
2818N/AXLFLAGS += \
2818N/A $(EOLIST)
2818N/Aendif
2818N/A
2818N/Aifeq "$(RELEASE)" "release"
2818N/AXINCDIRS += \
2818N/A $(EOLIST)
2818N/A
2818N/AXCFLAGS += \
4302N/A $(EOLIST)
4302N/A
5934N/AXDEFINES += \
5934N/A $(EOLIST)
5934N/A
5934N/AXLFLAGS += \
4302N/A $(EOLIST)
4302N/Aendif
3633N/A
3633N/A#
3633N/A# These are used by the link target if an NLM is being generated
2818N/A# This is used by the link 'name' directive to name the nlm. If left blank
2818N/A# TARGET_nlm (see below) will be used.
2818N/A#
2818N/ANLM_NAME = authnsocache
2818N/A
2818N/A#
2818N/A# This is used by the link '-desc ' directive.
2818N/A# If left blank, NLM_NAME will be used.
2818N/A#
2818N/ANLM_DESCRIPTION = Apache $(VERSION_STR) Authentication Cache Module
2818N/A
2818N/A#
2818N/A# This is used by the '-threadname' directive. If left blank,
2818N/A# NLM_NAME Thread will be used.
2818N/A#
3693N/ANLM_THREAD_NAME = AuthnSOCache Module
3693N/A
3693N/A#
3693N/A# If this is specified, it will override VERSION value in
3693N/A# $(AP_WORK)\build\NWGNUenvironment.inc
3693N/A#
3693N/ANLM_VERSION =
2818N/A
2818N/A#
2818N/A# If this is specified, it will override the default of 64K
2818N/A#
2818N/ANLM_STACK_SIZE = 8192
2818N/A
2818N/A
2818N/A#
3251N/A# If this is specified it will be used by the link '-entry' directive
2818N/A#
2818N/ANLM_ENTRY_SYM = _LibCPrelude
2818N/A
2818N/A#
2818N/A# If this is specified it will be used by the link '-exit' directive
2818N/A#
2818N/ANLM_EXIT_SYM = _LibCPostlude
2818N/A
3693N/A#
2818N/A# If this is specified it will be used by the link '-check' directive
2818N/A#
2818N/ANLM_CHECK_SYM =
2818N/A
2818N/A#
2818N/A# If these are specified it will be used by the link '-flags' directive
2818N/A#
2818N/ANLM_FLAGS = AUTOUNLOAD, PSEUDOPREEMPTION
3497N/A
3497N/A#
3497N/A# If this is specified it will be linked in with the XDCData option in the def
3497N/A# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
3497N/A# by setting APACHE_UNIPROC in the environment
3497N/A#
3497N/AXDCDATA =
3497N/A
3497N/A#
3497N/A# If there is an NLM target, put it here
3497N/A#
3497N/ATARGET_nlm = \
3497N/A $(OBJDIR)/authnsocache.nlm \
3497N/A $(EOLIST)
3693N/A
3497N/A#
3497N/A# If there is an LIB target, put it here
4828N/A#
4828N/ATARGET_lib = \
3497N/A $(EOLIST)
3497N/A
3497N/A#
3497N/A# These are the OBJ files needed to create the NLM target above.
4828N/A# Paths must all use the '/' character
4828N/A#
3497N/AFILES_nlm_objs = \
2818N/A $(OBJDIR)/mod_authn_socache.o \
3477N/A $(EOLIST)
2818N/A
2818N/A#
2818N/A# These are the LIB files needed to create the NLM target above.
2818N/A# These will be added as a library command in the link.opt file.
2818N/A#
2818N/AFILES_nlm_libs = \
2818N/A libcpre.o \
2818N/A $(EOLIST)
2818N/A
2818N/A#
2818N/A# These are the modules that the above NLM target depends on to load.
2818N/A# These will be added as a module command in the link.opt file.
2818N/A#
3722N/AFILES_nlm_modules = \
3722N/A aprlib \
2818N/A libc \
2818N/A $(EOLIST)
4089N/A
4089N/A#
4089N/A# If the nlm has a msg file, put it's path here
4089N/A#
4089N/AFILE_nlm_msg =
2818N/A
3747N/A#
3747N/A# If the nlm has a hlp file put it's path here
3747N/A#
3747N/AFILE_nlm_hlp =
3747N/A
3747N/A#
3747N/A# If this is specified, it will override $(NWOS)\copyright.txt.
2818N/A#
4089N/AFILE_nlm_copyright =
2818N/A
3817N/A#
3817N/A# Any additional imports go here
3817N/A#
3817N/AFILES_nlm_Ximports = \
3817N/A @$(APR)/aprlib.imp \
3817N/A @$(NWOS)/httpd.imp \
3817N/A @libc.imp \
3817N/A $(EOLIST)
3817N/A
3817N/A#
3817N/A# Any symbols exported to here
3817N/A#
3817N/AFILES_nlm_exports = \
3817N/A authn_socache_module \
$(EOLIST)
#
# These are the OBJ files needed to create the LIB target above.
# Paths must all use the '/' character
#
FILES_lib_objs = \
$(EOLIST)
#
# implement targets and dependancies (leave this section alone)
#
libs :: $(OBJDIR) $(TARGET_lib)
nlms :: libs $(TARGET_nlm)
#
# Updated this target to create necessary directories and copy files to the
# correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
#
install :: nlms FORCE
#
# Any specialized rules here
#
#
# Include the 'tail' makefile that has targets that depend on variables defined
# in this makefile
#
include $(AP_WORK)\build\NWGNUtail.inc