]> granicus.if.org Git - apache/blob - modules/NWGNUmakefile
Fix compile time warning. AJP protocol method is byte.
[apache] / modules / NWGNUmakefile
1 #
2 # Declare the sub-directories to be built here
3 #
4 # To build with exerimental modules set the environment 
5 #  variable EXPERIMENTAL=1
6
7 SUBDIRS = \
8         aaa \
9         cache \
10         dav\main \
11         dav\fs \
12         dav\lock \
13         echo \
14         generators \
15         loggers \
16         mappers \
17         metadata \
18         proxy \
19         filters \
20         database \
21         $(EOLIST) 
22
23 # If LDAPSDK has been defined then build the util_ldap module
24 ifneq "$(LDAPSDK)" ""
25 SUBDIRS += ldap \
26         $(EOLIST)
27 endif
28
29 # If OSSLSDK has been defined then build the mod_ssl module
30 ifndef USE_STDSOCKETS
31 ifneq "$(OSSLSDK)" ""
32 SUBDIRS += ssl \
33         $(EOLIST)
34 endif
35 endif
36
37 #If the mod_edir directory exists then build the mod_edir module
38 ifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir"
39 SUBDIRS += mod_edir \
40                $(EOLIST)
41 endif
42
43 # Allow the experimental modules to be built if EXPERIMENTAL is defined
44 ifdef EXPERIMENTAL
45 SUBDIRS += experimental \
46                $(EOLIST)
47 endif
48
49 # Allow the experimental modules to be built if EXPERIMENTAL is defined
50 ifdef DEBUG
51 SUBDIRS += debugging \
52                $(EOLIST)
53 endif
54
55
56 #
57 # Get the 'head' of the build environment.  This includes default targets and
58 # paths to tools
59 #
60
61 include $(AP_WORK)\build\NWGNUhead.inc
62
63 #
64 # build this level's files
65
66 ifeq "$(wildcard NWGNUmakefile.mak)" "NWGNUmakefile.mak" 
67 include NWGNUmakefile.mak
68 endif
69
70 #
71 # You can use this target if all that is needed is to copy files to the
72 # installation area
73 #
74 install :: nlms FORCE
75