NWGNUmakefile revision 574a3e83dacc1e5bd4390203a7f7df038bccf65d
1121N/A#
1121N/A# Declare the sub-directories to be built here
1121N/A#
1121N/A# To build with exerimental modules set the environment
1121N/A# variable EXPERIMENTAL=1
1121N/A
1121N/ASUBDIRS = \
1121N/A aaa \
1121N/A cache \
1121N/A dav\main \
1121N/A dav\fs \
1121N/A dav\lock \
1121N/A echo \
1121N/A generators \
1121N/A loggers \
1121N/A mappers \
1121N/A metadata \
1121N/A proxy \
1121N/A filters \
1121N/A database \
1121N/A $(EOLIST)
1121N/A
1121N/A# If LDAPSDK has been defined then build the util_ldap module
1121N/Aifneq "$(LDAPSDK)" ""
5086N/ASUBDIRS += ldap \
6334N/A $(EOLIST)
1121N/Aendif
1182N/A
2086N/A# If OSSLSDK has been defined then build the mod_ssl module
1121N/Aifndef USE_STDSOCKETS
2350N/Aifneq "$(OSSLSDK)" ""
2350N/ASUBDIRS += ssl \
5086N/A $(EOLIST)
2350N/Aendif
1121N/Aendif
1121N/A
1121N/A#If the mod_edir directory exists then build the mod_edir module
2350N/Aifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir"
2350N/ASUBDIRS += mod_edir \
1121N/A $(EOLIST)
1183N/Aendif
1191N/A
1121N/A# Allow the experimental modules to be built if EXPERIMENTAL is defined
1121N/Aifdef EXPERIMENTAL
3853N/ASUBDIRS += experimental \
1121N/A $(EOLIST)
2350N/Aendif
2350N/A
2350N/A# Allow the experimental modules to be built if EXPERIMENTAL is defined
2811N/Aifdef DEBUG
1121N/ASUBDIRS += debug \
2086N/A $(EOLIST)
1121N/Aendif
2086N/A
1121N/A
5086N/A#
5086N/A# Get the 'head' of the build environment. This includes default targets and
5086N/A# paths to tools
5086N/A#
1121N/A
3853N/Ainclude $(AP_WORK)\build\NWGNUhead.inc
2350N/A
1121N/A#
1121N/A# build this level's files
2350N/A
1121N/Aifeq "$(wildcard NWGNUmakefile.mak)" "NWGNUmakefile.mak"
4802N/Ainclude NWGNUmakefile.mak
2086N/Aendif
1121N/A
1121N/A#
2086N/A# You can use this target if all that is needed is to copy files to the
1121N/A# installation area
5086N/A#
2350N/Ainstall :: nlms FORCE
2350N/A
5086N/A