]> granicus.if.org Git - apache/blob - modules/NWGNUmakefile
Remove unused variable
[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 # To build with the mod_ssl module set the environment
7 #  variable WITH_MOD_SSL=1
8
9 # If USE_STDSOCKETS is defined we allways build mod_ssl
10 ifdef USE_STDSOCKETS
11 WITH_MOD_SSL=1
12 endif
13
14 SUBDIRS = \
15         aaa \
16         cache \
17         cluster \
18         dav/main \
19         dav/fs \
20         dav/lock \
21         echo \
22         examples \
23         generators \
24         loggers \
25         mappers \
26         metadata \
27         proxy \
28         filters \
29         database \
30         session \
31         slotmem \
32         $(EOLIST)
33
34 # If LDAPSDK has been defined then build the util_ldap module
35 ifneq "$(LDAPSDK)" ""
36 SUBDIRS += ldap \
37         $(EOLIST)
38 endif
39
40 # If WITH_MOD_SSL and OSSLSDK have been defined then build the mod_ssl module
41 ifdef WITH_MOD_SSL
42 ifneq "$(OSSLSDK)" ""
43 SUBDIRS += ssl \
44         $(EOLIST)
45 endif
46 endif
47
48 # If WITH_MOD_LUA and LUASRC have been defined then build the mod_lua module
49 ifdef WITH_MOD_LUA
50 ifneq "$(LUASRC)" ""
51 SUBDIRS += lua \
52         $(EOLIST)
53 endif
54 endif
55
56 # Allow the experimental modules to be built if EXPERIMENTAL is defined
57 ifdef EXPERIMENTAL
58 SUBDIRS += experimental \
59         $(EOLIST)
60 endif
61
62 # Allow the debugging modules to be built if DEBUG is defined
63 ifdef DEBUG
64 SUBDIRS += debugging \
65         $(EOLIST)
66 endif
67
68 # Allow the test modules to be built if TEST is defined
69 ifdef TEST
70 SUBDIRS += test \
71         $(EOLIST)
72 endif
73
74 #If the mod_edir directory exists then build the mod_edir module
75 ifeq "$(wildcard $(STDMOD)/mod_edir)" "$(STDMOD)/mod_edir"
76 SUBDIRS += mod_edir \
77         $(EOLIST)
78 endif
79
80
81 #
82 # Get the 'head' of the build environment.  This includes default targets and
83 # paths to tools
84 #
85
86 include $(AP_WORK)/build/NWGNUhead.inc
87
88 #
89 # build this level's files
90
91 ifeq "$(wildcard NWGNUmakefile.mak)" "NWGNUmakefile.mak"
92 include NWGNUmakefile.mak
93 endif
94
95 #
96 # You can use this target if all that is needed is to copy files to the
97 # installation area
98 #
99 install :: nlms FORCE
100