NWGNUproxyajp revision 104b0ed445d0cb91b55b8bdd80fa95f3bbc22d15
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# Make sure all needed macro's are defined
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# Get the 'head' of the build environment if necessary. This includes default
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# targets and paths to tools
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncifndef EnvironmentDefined
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncinclude $(AP_WORK)\build\NWGNUhead.inc
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These directories will be at the beginning of the include list, followed by
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXINCDIRS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync $(AP_WORK)/include \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync $(APR)/include \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync $(APRUTIL)/include \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These flags will come after CFLAGS
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXCFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync -relax_pointers \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These defines will come after DEFINES
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXDEFINES += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These flags will be added to the link.opt file
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXLFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These values will be appended to the correct variables based on the value of
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncifeq "$(RELEASE)" "debug"
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXINCDIRS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXCFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXDEFINES += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXLFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncifeq "$(RELEASE)" "noopt"
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXINCDIRS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXCFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXDEFINES += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXLFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncifeq "$(RELEASE)" "release"
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXINCDIRS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXCFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXDEFINES += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncXLFLAGS += \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# These are used by the link target if an NLM is being generated
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# This is used by the link 'name' directive to name the nlm. If left blank
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# TARGET_nlm (see below) will be used.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_NAME = proxyajp
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# This is used by the link '-desc ' directive.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# If left blank, NLM_NAME will be used.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_DESCRIPTION = Apache $(VERSION_STR) Proxy AJP Sub-Module
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# This is used by the '-threadname' directive. If left blank,
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# NLM_NAME Thread will be used.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_THREAD_NAME = Proxy AJP Module
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# If this is specified, it will override VERSION value in
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# $(AP_WORK)\build\NWGNUenvironment.inc
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_VERSION =
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# If this is specified, it will override the default of 64K
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_STACK_SIZE = 8192
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync# If this is specified it will be used by the link '-entry' directive
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsyncNLM_ENTRY_SYM = _LibCPrelude
# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
$(OBJDIR)/proxyajp.nlm \
$(OBJDIR)/mod_proxy_ajp.o \
$(OBJDIR)/proxy_util.o \
$(OBJDIR)/ajp_header.o \
$(OBJDIR)/ajp_msg.o \
$(OBJDIR)/ajp_link.o \
$(OBJDIR)/libprews.o \
# These will be added as a library command in the link.opt file.
# These will be added as a module command in the link.opt file.
# If this is specified, it will override $(NWOS)\copyright.txt.
@$(APR)/aprlib.imp \
@$(NWOS)/httpd.imp \
@libc.imp \
@ws2nlm.imp \
# correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
vpath %.c ../arch/netware
include $(AP_WORK)\build\NWGNUtail.inc