NWGNUab revision 8ffac2c334103c0336602aaede650cb578611151
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halley# Get the 'head' of the build environment if necessary. This includes default
50722c0d550a63d4a2b8f34e907b693a81d864e0Mark Andrews# targets and paths to tools
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halleyifndef EnvironmentDefined
178f6ad061e54bc5babfca3577f72058fa0797c1Bob Halleyinclude $(AP_WORK)/build/NWGNUhead.inc
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# build this level's files
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# Make sure all needed macro's are defined
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrewsifeq "$(WITH_ABS)" "1"
c427260a8678f2e99a2337fb95ec98d9c9ee8c05Mark Andrewsifeq "$(USE_NTLS)" "1"
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid LawrenceSSL_INC = $(NTLSSDK)/inc
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_LIB = $(NTLSSDK)/imp
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_BIN = $(NTLSSDK)/bin
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_APP = $(NTLSSDK)/apps
460b427411b72da26b1836b9424e2e70d65d9394David Lawrenceifneq "$(wildcard $(SSL_INC)/openssl/opensslv.h)" "$(SSL_INC)/openssl/opensslv.h"
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley$(warning '$(NTLSSDK)' does NOT point to a valid NTLS SDK!)
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_INC = $(OSSLSDK)/outinc_nw_libc
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_LIB = $(OSSLSDK)/out_nw_libc
b897c52f865b2fc4e220e2110b874e59c716456bBob HalleySSL_BIN = $(OSSLSDK)/out_nw_libc
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleySSL_APP = $(OSSLSDK)/apps
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halleyifneq "$(wildcard $(SSL_INC)/openssl/opensslv.h)" "$(SSL_INC)/openssl/opensslv.h"
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley$(warning '$(OSSLSDK)' does NOT point to a valid OpenSSL SDK!)
460b427411b72da26b1836b9424e2e70d65d9394David Lawrenceifeq "$(wildcard $(SSL_INC)/openssl/opensslv.h)" "$(SSL_INC)/openssl/opensslv.h"
460b427411b72da26b1836b9424e2e70d65d9394David LawrenceHAVE_OPENSSL = 1
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence# These directories will be at the beginning of the include list, followed by
460b427411b72da26b1836b9424e2e70d65d9394David Lawrenceifdef HAVE_OPENSSL
460b427411b72da26b1836b9424e2e70d65d9394David Lawrence $(SSL_INC)/openssl \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews $(AP_WORK)/include \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews $(APR)/include \
dabea86dac4c01f852b7aea728f73b4f55a89d44Mark Andrews $(APRUTIL)/include \
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence# These flags will come after CFLAGS
8319af16557b81eba3277ee67215285f0823b587Mark Andrews# These defines will come after DEFINES
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrenceifdef HAVE_OPENSSL
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence -DHAVE_OPENSSL \
0014d6342b0d50ae37126ac16d5bf821d02ffff7David Lawrence# These flags will be added to the link.opt file
12e63bfe1d111ccb57f482b28d56c785cccc7cf7David Lawrence -l $(SSL_LIB) \
c427260a8678f2e99a2337fb95ec98d9c9ee8c05Mark Andrews# These values will be appended to the correct variables based on the value of
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halleyifeq "$(RELEASE)" "debug"
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyXINCDIRS += \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyXDEFINES += \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halleyifeq "$(RELEASE)" "noopt"
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyXINCDIRS += \
a9558a6c63d9c6dbb2f3800b39ccb008652fcde3Mark Andrewsifeq "$(RELEASE)" "release"
a9558a6c63d9c6dbb2f3800b39ccb008652fcde3Mark AndrewsXINCDIRS += \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyXDEFINES += \
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# These are used by the link target if an NLM is being generated
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# This is used by the link 'name' directive to name the nlm. If left blank
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# TARGET_nlm (see below) will be used.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halleyifdef HAVE_OPENSSL
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyNLM_NAME = abs
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyNLM_NAME = ab
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# This is used by the link '-desc ' directive.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# If left blank, NLM_NAME will be used.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyNLM_DESCRIPTION = Apache $(VERSION_STR) Benchmark Utility for NetWare
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# This is used by the '-threadname' directive. If left blank,
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# NLM_NAME Thread will be used.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyNLM_THREAD_NAME = $(NLM_NAME)
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# This is used by the '-screenname' directive. If left blank,
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# 'Apache for NetWare' Thread will be used.
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley#NLM_SCREEN_NAME = Apache Bench
0b72c791466d0807bcf22522b5ddb7da902c2720Bob HalleyNLM_SCREEN_NAME = DEFAULT
0b72c791466d0807bcf22522b5ddb7da902c2720Bob Halley# If this is specified, it will override VERSION value in
# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
$(OBJDIR)/ab.o \
# These will be added as a library command in the link.opt file.
$(SSL_LIB)/crypto.lib \
$(SSL_LIB)/ssl.lib \
# These will be added as a module command in the link.opt file.
# If this is specified, it will override $(NWOS)\copyright.txt.
@aprlib.imp \
@libc.imp \
FILES_nlm_Ximports += @ws2nlm.imp \
FILES_nlm_Ximports += @ntls.imp \
# correct place. (See $(AP_WORK)/build/NWGNUhead.inc for examples)
include $(AP_WORK)/build/NWGNUtail.inc