NWGNUmakefile revision e097a47d2f32eaf74a6130e6fadfa3e24b8cb2ef
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# This Makefile requires the environment var OSSLSDK
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# pointing to the base directory of your OpenSSL SDK.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If you want to use the Novell NTLS SDK instead then
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# define NTLSSDK pointing to the base directory of the
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# SDK, and also set USE_NTLS=1
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Declare the sub-directories to be built here
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSUBDIRS = \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Get the 'head' of the build environment. This includes default targets and
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# paths to tools
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterinclude $(AP_WORK)/build/NWGNUhead.inc
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# build this level's files
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Make sure all needed macro's are defined
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifeq "$(USE_NTLS)" "1"
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_INC = $(NTLSSDK)/inc
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_LIB = $(NTLSSDK)/imp
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_BIN = $(NTLSSDK)/bin
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_APP = $(NTLSSDK)/apps
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifneq "$(wildcard $(SSL_INC)/openssl/opensslv.h)" "$(SSL_INC)/openssl/opensslv.h"
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster$(error '$(NTLSSDK)' does NOT point to a valid NTLS SDK!)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterelse
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_INC = $(OSSLSDK)/outinc_nw_libc
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_LIB = $(OSSLSDK)/out_nw_libc
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_BIN = $(OSSLSDK)/out_nw_libc
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSSL_APP = $(OSSLSDK)/apps
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifneq "$(wildcard $(SSL_INC)/openssl/opensslv.h)" "$(SSL_INC)/openssl/opensslv.h"
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster$(error '$(OSSLSDK)' does NOT point to a valid OpenSSL SDK!)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These directories will be at the beginning of the include list, followed by
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# INCDIRS
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXINCDIRS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(SSL_INC) \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(SSL_INC)/openssl \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(APR)/include \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(APRUTIL)/include \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(AP_WORK)/include \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(AP_WORK)/modules/cache \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(AP_WORK)/modules/generators \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(AP_WORK)/server/mpm/NetWare \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(NWOS) \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These flags will come after CFLAGS
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXCFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These defines will come after DEFINES
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXDEFINES += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster -DHAVE_OPENSSL \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These flags will be added to the link.opt file
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXLFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster -l $(SSL_LIB) \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These values will be appended to the correct variables based on the value of
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# RELEASE
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifeq "$(RELEASE)" "debug"
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXINCDIRS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXCFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXDEFINES += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXLFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifeq "$(RELEASE)" "noopt"
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXINCDIRS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXCFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXDEFINES += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXLFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifeq "$(RELEASE)" "release"
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXINCDIRS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXCFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXDEFINES += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterXLFLAGS += \
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster $(EOLIST)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# These are used by the link target if an NLM is being generated
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# This is used by the link 'name' directive to name the nlm. If left blank
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# TARGET_nlm (see below) will be used.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_NAME = mod_ssl
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# This is used by the link '-desc ' directive.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If left blank, NLM_NAME will be used.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterifeq "$(USE_NTLS)" "1"
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_DESCRIPTION = Apache $(VERSION_STR) SSL module (NTLS)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterelse
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_DESCRIPTION = Apache $(VERSION_STR) SSL module (OpenSSL)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterendif
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# This is used by the '-threadname' directive. If left blank,
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# NLM_NAME Thread will be used.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_THREAD_NAME = $(NLM_NAME)
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If this is specified, it will override VERSION value in
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# $(AP_WORK)/build/NWGNUenvironment.inc
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_VERSION =
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If this is specified, it will override the default of 64K
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterNLM_STACK_SIZE = 8192
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If this is specified it will be used by the link '-entry' directive
#
NLM_ENTRY_SYM =
#
# If this is specified it will be used by the link '-exit' directive
#
NLM_EXIT_SYM =
#
# If this is specified it will be used by the link '-check' directive
#
NLM_CHECK_SYM =
#
# If this is specified it will be used by the link '-flags' directive
#
NLM_FLAGS =
#
# If this is specified it will be linked in with the XDCData option in the def
# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
# by setting APACHE_UNIPROC in the environment
#
XDCDATA =
#
# Declare all target files (you must add your files here)
#
#
# If there is an NLM target, put it here
#
TARGET_nlm = \
$(OBJDIR)/$(NLM_NAME).nlm \
$(EOLIST)
#
# If there is an LIB target, put it here
#
TARGET_lib = \
$(EOLIST)
#
# These are the OBJ files needed to create the NLM target above.
# Paths must all use the '/' character
#
FILES_nlm_objs := $(patsubst %.c,$(OBJDIR)/%.o,$(wildcard *.c))
#
# These are the LIB files needed to create the NLM target above.
# These will be added as a library command in the link.opt file.
#
FILES_nlm_libs = \
libcpre.o \
$(EOLIST)
ifneq "$(USE_NTLS)" "1"
FILES_nlm_libs += \
$(SSL_LIB)/crypto.lib \
$(SSL_LIB)/ssl.lib \
$(EOLIST)
endif
#
# These are the modules that the above NLM target depends on to load.
# These will be added as a module command in the link.opt file.
#
FILES_nlm_modules = \
Apache2 \
Libc \
$(EOLIST)
ifeq "$(USE_NTLS)" "1"
FILES_nlm_modules += ntls \
$(EOLIST)
endif
#
# If the nlm has a msg file, put it's path here
#
FILE_nlm_msg =
#
# If the nlm has a hlp file put it's path here
#
FILE_nlm_hlp =
#
# If this is specified, it will override $(NWOS)\copyright.txt.
#
FILE_nlm_copyright =
#
# Any additional imports go here
#
FILES_nlm_Ximports = \
@libc.imp \
@aprlib.imp \
@httpd.imp \
$(EOLIST)
# Don't link with Winsock if standard sockets are being used
ifneq "$(USE_STDSOCKETS)" "1"
FILES_nlm_Ximports += @ws2nlm.imp \
$(EOLIST)
endif
ifeq "$(USE_NTLS)" "1"
FILES_nlm_Ximports += @ntls.imp \
$(EOLIST)
else
FILES_nlm_Ximports += \
GetProcessSwitchCount \
RunningProcess \
GetSuperHighResolutionTimer \
$(EOLIST)
endif
#
# Any symbols exported to here
#
FILES_nlm_exports = \
ssl_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
$(call COPY,$(OBJDIR)/*.nlm, $(INSTALL)/$(BASEDIR)/modules/)
$(call COPY,$(SSL_BIN)/openssl.nlm, $(INSTALL)/$(BASEDIR)/bin/)
$(call COPY,$(SSL_APP)/openssl.cnf, $(INSTALL)/$(BASEDIR)/bin/)
#
# Any specialized rules here
#
vpath %.c $(AP_WORK)/modules/arch/netware
#
# Include the 'tail' makefile that has targets that depend on variables defined
# in this makefile
#
include $(APBUILD)/NWGNUtail.inc