NWGNUmakefile revision 789323e78ca589d6e00e8f264bf2504922aa9f29
764N/A#
764N/A# Declare the sub-directories to be built here
764N/A#
764N/A# To build with exerimental modules set the environment
943N/A# variable EXPERIMENTAL=1
764N/A# To build with the mod_ssl module set the environment
764N/A# variable WITH_MOD_SSL=1
919N/A
919N/A# If USE_STDSOCKETS is defined we allways build mod_ssl
919N/Aifdef USE_STDSOCKETS
919N/AWITH_MOD_SSL=1
919N/Aendif
919N/A
919N/ASUBDIRS = \
919N/A aaa \
919N/A cache \
919N/A cluster \
919N/A dav\main \
919N/A dav\fs \
919N/A dav\lock \
919N/A echo \
919N/A examples \
919N/A generators \
919N/A loggers \
764N/A mappers \
764N/A metadata \
764N/A proxy \
764N/A filters \
764N/A database \
764N/A session \
764N/A slotmem \
764N/A $(EOLIST)
764N/A
764N/A# If LDAPSDK has been defined then build the util_ldap module
764N/Aifneq "$(LDAPSDK)" ""
764N/ASUBDIRS += ldap \
764N/A $(EOLIST)
764N/Aendif
764N/A
764N/A# If WITH_MOD_SSL and OSSLSDK have been defined then build the mod_ssl module
764N/Aifdef WITH_MOD_SSL
764N/Aifneq "$(OSSLSDK)" ""
764N/ASUBDIRS += ssl \
851N/A $(EOLIST)
922N/Aendif
764N/Aendif
764N/A
764N/A# If WITH_MOD_LUA and LUASRC have been defined then build the mod_lua module
764N/Aifdef WITH_MOD_LUA
ifneq "$(LUASRC)" ""
SUBDIRS += lua \
$(EOLIST)
endif
endif
#If the mod_edir directory exists then build the mod_edir module
ifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir"
SUBDIRS += mod_edir \
$(EOLIST)
endif
# Allow the experimental modules to be built if EXPERIMENTAL is defined
ifdef EXPERIMENTAL
SUBDIRS += experimental \
$(EOLIST)
endif
# Allow the debugging modules to be built if DEBUG is defined
ifdef DEBUG
SUBDIRS += debugging \
$(EOLIST)
endif
# Allow the test modules to be built if TEST is defined
ifdef TEST
SUBDIRS += test \
$(EOLIST)
endif
#
# Get the 'head' of the build environment. This includes default targets and
# paths to tools
#
include $(AP_WORK)\build\NWGNUhead.inc
#
# build this level's files
ifeq "$(wildcard NWGNUmakefile.mak)" "NWGNUmakefile.mak"
include NWGNUmakefile.mak
endif
#
# You can use this target if all that is needed is to copy files to the
# installation area
#
install :: nlms FORCE