NWGNUauthzgrp revision 3c937b528ca923d5b51e63def9f888af4a77bb40
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# Make sure all needed macro's are defined
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# Get the 'head' of the build environment if necessary. This includes default
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# targets and paths to tools
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncifndef EnvironmentDefined
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncinclude $(AP_WORK)\build\NWGNUhead.inc
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These directories will be at the beginning of the include list, followed by
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXINCDIRS += \
930b5f872e89407f445d4000d4e4aaecaa6a0998vboxsync $(AP_WORK)/include \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These flags will come after CFLAGS
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXCFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These defines will come after DEFINES
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXDEFINES += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These flags will be added to the link.opt file
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXLFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These values will be appended to the correct variables based on the value of
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncifeq "$(RELEASE)" "debug"
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXINCDIRS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXCFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXDEFINES += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXLFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncifeq "$(RELEASE)" "noopt"
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXINCDIRS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXCFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXDEFINES += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXLFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncifeq "$(RELEASE)" "release"
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXINCDIRS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXCFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXDEFINES += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncXLFLAGS += \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These are used by the link target if an NLM is being generated
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# This is used by the link 'name' directive to name the nlm. If left blank
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# TARGET_nlm (see below) will be used.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_NAME = authzgrp
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# This is used by the link '-desc ' directive.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If left blank, NLM_NAME will be used.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_DESCRIPTION = Group File Authorization Module
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# This is used by the '-threadname' directive. If left blank,
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# NLM_NAME Thread will be used.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_THREAD_NAME = AuthzGrp Module
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified, it will override VERSION value in
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# $(AP_WORK)\build\NWGNUenvironment.inc
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_VERSION =
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified, it will override the default of 64K
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_STACK_SIZE = 8192
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified it will be used by the link '-entry' directive
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_ENTRY_SYM = _LibCPrelude
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified it will be used by the link '-exit' directive
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_EXIT_SYM = _LibCPostlude
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified it will be used by the link '-check' directive
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_CHECK_SYM =
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If these are specified it will be used by the link '-flags' directive
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncNLM_FLAGS = AUTOUNLOAD, PSEUDOPREEMPTION
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If this is specified it will be linked in with the XDCData option in the def
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# by setting APACHE_UNIPROC in the environment
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If there is an NLM target, put it here
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncTARGET_nlm = \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If there is an LIB target, put it here
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncTARGET_lib = \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These are the OBJ files needed to create the NLM target above.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# Paths must all use the '/' character
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncFILES_nlm_objs = \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These are the LIB files needed to create the NLM target above.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These will be added as a library command in the link.opt file.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncFILES_nlm_libs = \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These are the modules that the above NLM target depends on to load.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# These will be added as a module command in the link.opt file.
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsyncFILES_nlm_modules = \
3194da424708abdd288b28d96892b3a5f3f7df0bvboxsync# If the nlm has a msg file, put it's path here
# If this is specified, it will override $(NWOS)\copyright.txt.
@$(APR)/aprlib.imp \
@$(NWOS)/httpd.imp \
@libc.imp \
# correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
include $(AP_WORK)\build\NWGNUtail.inc