NWGNUmakefile revision 5b0c702735f2049038c50c7dc5dd2606086ee110
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Declare the sub-directories to be built here
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes $(APR_WORK) \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Get the 'head' of the build environment. This includes default targets and
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# paths to tools
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesinclude $(AP_WORK)\build\NWGNUhead.inc
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# build this level's files
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Make sure all needed macro's are defined
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These directories will be at the beginning of the include list, followed by
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXINCDIRS += \
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes $(APR)/include \
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes $(APRUTIL)/include \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes $(AP_WORK)/include \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These flags will come after CFLAGS
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These defines will come after DEFINES
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXDEFINES += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These flags will be added to the link.opt file
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These values will be appended to the correct variables based on the value of
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesifeq "$(RELEASE)" "debug"
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXINCDIRS += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXDEFINES += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesifeq "$(RELEASE)" "noopt"
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXINCDIRS += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXDEFINES += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesifeq "$(RELEASE)" "release"
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXINCDIRS += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesXDEFINES += \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These are used by the link target if an NLM is being generated
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# This is used by the link 'name' directive to name the nlm. If left blank
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# TARGET_nlm (see below) will be used.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_NAME = Apache2
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# This is used by the link '-desc ' directive.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If left blank, NLM_NAME will be used.
0a39e7683f6611d66c55712f50bb240428d832a1bnicholesNLM_DESCRIPTION = Apache Web Server $(VERSION_STR)
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# This is used by the '-threadname' directive. If left blank,
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# NLM_NAME Thread will be used.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_THREAD_NAME = Apache
41022996c916eb4ab2ec3204eb491b64779eb100bnicholes# This is used by the '-screenname' directive. If left blank,
41022996c916eb4ab2ec3204eb491b64779eb100bnicholes# 'Apache for NetWare' Thread will be used.
036436f4f4cdcd76186c0058891216545967043bbnicholesNLM_SCREEN_NAME = Apache $(VERSION_STR) for NetWare
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified, it will override VERSION value in
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# $(AP_WORK)\build\NWGNUenvironment.inc
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_VERSION =
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified, it will override the default of 64K
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_STACK_SIZE = 65536
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified it will be used by the link '-entry' directive
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_ENTRY_SYM = _LibCPrelude
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified it will be used by the link '-exit' directive
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_EXIT_SYM = _LibCPostlude
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified it will be used by the link '-check' directive
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_CHECK_SYM = _LibCCheckUnload
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If these are specified it will be used by the link '-flags' directive
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesNLM_FLAGS = PSEUDOPREEMPTION
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified it will be linked in with the XDCData option in the def
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# file instead of the default of $(NWOS)/apache.xdc. XDCData can be disabled
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# by setting APACHE_UNIPROC in the environment
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If there is an NLM target, put it here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesTARGET_nlm = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If there is an LIB target, put it here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesTARGET_lib = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These are the OBJ files needed to create the NLM target above.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Paths must all use the '/' character
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_nlm_objs = \
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes# Build in mod_nw_ssl if Winsock is being used
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesifndef USE_STDSOCKETS
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesFILES_nlm_objs += $(OBJDIR)/mod_nw_ssl.o \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These are the LIB files needed to create the NLM target above.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These will be added as a library command in the link.opt file.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_nlm_libs = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These are the modules that the above NLM target depends on to load.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These will be added as a module command in the link.opt file.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_nlm_modules = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If the nlm has a msg file, put it's path here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILE_nlm_msg =
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If the nlm has a hlp file put it's path here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILE_nlm_hlp =
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# If this is specified, it will override $(NWOS)\copyright.txt.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILE_nlm_copyright =
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Any additional imports go here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_nlm_Ximports = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes GetCurrentAddressSpace \
e76fdcdfb8994ad70776526f50fa013b3e9a6033bnicholes# Don't link with Winsock if standard sockets are being used
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesifndef USE_STDSOCKETS
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesFILES_nlm_Ximports += @ws2nlm.imp \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Any symbols exported to here
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_nlm_exports = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# These are the OBJ files needed to create the LIB target above.
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Paths must all use the '/' character
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesFILES_lib_objs = \
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# implement targets and dependancies (leave this section alone)
bb2b38cd44b032118359afbc743efbea12f48e61bnicholeslibs :: $(OBJDIR) $(TARGET_lib)
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesnlms :: libs $(TARGET_nlm)
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Updated this target to create necessary directories and copy files to the
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# correct place. (See $(AP_WORK)\build\NWGNUhead.inc for examples)
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesinstall :: nlms FORCE
2e3a086879b1ac9681ea9ccf458096236f500dccbnicholes -copy $(OBJDIR)\Apache2.nlm $(INSTALL)\Apache2\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy ABOUT_APACHE $(INSTALL)\Apache2\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy README $(INSTALL)\Apache2\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy STATUS $(INSTALL)\Apache2\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy LICENSE $(INSTALL)\Apache2\*.*
2e3a086879b1ac9681ea9ccf458096236f500dccbnicholes -copy CHANGES $(INSTALL)\Apache2\*.*
084aee5bd4093a1b5e9b51d1ccfafc3948fa4109bnicholes -copy support\dbmmanage.in $(INSTALL)\Apache2\bin\dbmmanage.pl
084aee5bd4093a1b5e9b51d1ccfafc3948fa4109bnicholes -copy support\logresolve.pl.in $(INSTALL)\Apache2\bin\logresolve.pl
e76fdcdfb8994ad70776526f50fa013b3e9a6033bnicholesifdef USE_STDSOCKETS
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\httpd.conf.in >$(INSTALL)\Apache2\conf\httpd.conf
e76fdcdfb8994ad70776526f50fa013b3e9a6033bnicholes -awk -v SSL=1 -f build\mkconfnw.awk docs\conf\httpd.conf.in >$(INSTALL)\Apache2\conf\httpd.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes $(CHKNOT) $(INSTALL)\Apache2\conf\extra\nul mkdir $(INSTALL)\Apache2\conf\extra
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-autoindex.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-autoindex.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-dav.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-dav.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-default.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-default.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-info.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-info.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-languages.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-languages.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-manual.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-manual.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-mpm.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-mpm.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-multilang-errordoc.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-multilang-errordoc.conf
e76fdcdfb8994ad70776526f50fa013b3e9a6033bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-ssl.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-ssl.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-userdir.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-userdir.conf
509d30fddc88d129f9ba0f6000b802afa021fe52bnicholes -awk -f build\mkconfnw.awk docs\conf\extra\httpd-vhosts.conf.in >$(INSTALL)\Apache2\conf\extra\httpd-vhosts.conf
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy docs\conf\magic $(INSTALL)\Apache2\conf\magic
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy docs\conf\mime.types $(INSTALL)\Apache2\conf\mime.types
2d25618c79d4f62bbd867a69b6d9c94a261be695bnicholes -copy docs\conf\charset.conv $(INSTALL)\Apache2\conf\charset.conv
2e3a086879b1ac9681ea9ccf458096236f500dccbnicholes -copy docs\cgi-examples\printenv $(INSTALL)\Apache2\cgi-bin\printenv.pl
0f7cc4b1d3c42262bcdced99f682778963e83ea7bnicholes @echo rem copying the docs directories > xc.bat
5a1101aa8bb19d6bafb6c7808a56f49a95b0b769bnicholes @echo xcopy docs\error $(INSTALL)\Apache2\error $(XCOPYSW) >> xc.bat
5a1101aa8bb19d6bafb6c7808a56f49a95b0b769bnicholes @echo xcopy docs\docroot $(INSTALL)\Apache2\htdocs $(XCOPYSW) >> xc.bat
5a1101aa8bb19d6bafb6c7808a56f49a95b0b769bnicholes @echo xcopy docs\icons $(INSTALL)\Apache2\icons $(XCOPYSW) >> xc.bat
5a1101aa8bb19d6bafb6c7808a56f49a95b0b769bnicholes @echo xcopy docs\man $(INSTALL)\Apache2\man $(XCOPYSW) >> xc.bat
5a1101aa8bb19d6bafb6c7808a56f49a95b0b769bnicholes @echo xcopy docs\manual $(INSTALL)\Apache2\manual $(XCOPYSW) >> xc.bat
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesinstalldev :: FORCE
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(AP_WORK))\include\*.h $(INSTALL)\Apache2\include\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(AP_WORK))\os\netware\*.h $(INSTALL)\Apache2\include\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(NWOS))\*.imp $(INSTALL)\Apache2\lib\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(APR))\include\*.h $(INSTALL)\Apache2\include\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(APRUTIL))\include\*.h $(INSTALL)\Apache2\include\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes -copy $(subst /,\,$(APR))\*.imp $(INSTALL)\Apache2\lib\*.*
a0209387ac93aa84037cf3a48096e75c6c8ce17ebnicholes -copy $(subst /,\,$(NWOS))\*.xdc $(INSTALL)\Apache2\lib\*.*
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholesprebuild :: FORCE
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes $(MAKE) -C server -f NWGNUMakefile
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes $(MAKE) -C srclib/pcre -f NWGNUMakefile
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes $(MAKE) -C $(APU_WORK)/uri -f NWGNUMakefile
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes $(CHKNOT) $(PREBUILD_INST)\nul mkdir $(PREBUILD_INST)
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes -copy $(AP_WORK)\server\$(OBJDIR)\*.nlm $(PREBUILD_INST)\*.*
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes -copy $(AP_WORK)\srclib\pcre\$(basename $(OBJDIR))\*.nlm $(PREBUILD_INST)\*.*
273e1eccdc9e5b94f1e3e13e3ffca7360b6f461fbnicholes -copy $(APU_WORK)\uri\$(basename $(OBJDIR))\*.nlm $(PREBUILD_INST)\*.*
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Any specialized rules here
8410c53aaf5e0372a19d5f4d2bc696b9c609ce3cbnicholesvpath %.c server:modules/arch/netware:modules/http:modules/aaa:modules/mappers
8410c53aaf5e0372a19d5f4d2bc696b9c609ce3cbnicholesvpath %.c modules/generators:modules/metadata:modules/filters:modules/loggers
8410c53aaf5e0372a19d5f4d2bc696b9c609ce3cbnicholesvpath %.c os/netware:server/mpm/netware:srclib/pcre
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# Include the 'tail' makefile that has targets that depend on variables defined
bb2b38cd44b032118359afbc743efbea12f48e61bnicholes# in this makefile
bb2b38cd44b032118359afbc743efbea12f48e61bnicholesinclude $(AP_WORK)\build\NWGNUtail.inc