3 # top level waf build script for samba4
5 from waflib
import Options
14 # create separate build groups for building the asn1 and et compiler, then
15 # building the C from ASN1 and IDL, and finally the main build process
16 bld
.SETUP_BUILD_GROUPS()
17 bld
.AUTOCLEANUP_STALE_FILES()
19 # enable building of public headers in the build tree
20 bld
.env
.build_public_headers
= 'include/public'
22 # these are includes which appear in public headers, but with #ifdef conditional
23 # compilation, so they are safe
24 bld
.env
.public_headers_skip
= ['lib/param/param_proto.h', 'lib/param/param_functions.h']
26 version
=samba_version
.load_version(bld
.env
, is_install
=bld
.is_install
)
27 bld
.SAMBA_MKVERSION('version.h')
29 # bld.ENABLE_MAGIC_ORDERING()
31 bld
.env
.ABS_TOP_SRCDIR
= bld
.srcnode
.abspath() + '/docs-xml'
32 bld
.env
.ABS_TOP_BUILDDIR
= bld
.srcnode
.abspath() + '/bin/default/docs-xml'
33 bld
.CONFIGURE_FILE('docs-xml/build/catalog.xml',
34 ABS_TOP_BUILDDIR
= bld
.env
.ABS_TOP_BUILDDIR
,
35 ABS_TOP_SRCDIR
=bld
.env
.ABS_TOP_SRCDIR
)
36 bld
.env
.DOC_VERSION
=version
.STRING
37 bld
.CONFIGURE_FILE('docs-xml/build/DTD/samba.build.version',
38 DOC_VERSION
=bld
.env
.DOC_VERSION
)
39 bld
.RECURSE('docs-xml')
41 bld
.RECURSE('lib/replace')
42 bld
.RECURSE('lib/socket')
43 bld
.RECURSE('lib/talloc')
44 bld
.RECURSE('lib/tevent')
45 bld
.RECURSE('lib/texpect')
46 bld
.RECURSE('lib/addns')
47 bld
.RECURSE('lib/ldb')
48 bld
.RECURSE('lib/param')
49 bld
.RECURSE('lib/printer_driver')
50 bld
.RECURSE('lib/audit_logging')
51 bld
.RECURSE('dynconfig')
52 bld
.RECURSE('lib/util/charset')
54 bld
.RECURSE('source4/param')
55 bld
.RECURSE('source4/librpc')
56 bld
.RECURSE('source4/dsdb')
57 bld
.RECURSE('source4/smbd')
58 bld
.RECURSE('source4/cluster')
59 bld
.RECURSE('source4/smbd')
60 bld
.RECURSE('source4/libnet')
61 bld
.RECURSE('source4/auth')
63 bld
.RECURSE('auth/kerberos')
64 bld
.RECURSE('nsswitch')
65 bld
.RECURSE('nsswitch/libwbclient')
66 bld
.RECURSE('source4/lib/samba3')
67 bld
.RECURSE('source4/lib/socket')
68 bld
.RECURSE('lib/ldb-samba')
69 bld
.RECURSE('source4/lib/tls')
70 bld
.RECURSE('source4/lib/registry')
71 bld
.RECURSE('source4/lib/messaging')
72 bld
.RECURSE('source4/lib/events')
73 bld
.RECURSE('source4/lib/cmdline')
74 bld
.RECURSE('source4/lib/http')
75 if bld
.CHECK_FOR_THIRD_PARTY():
76 bld
.RECURSE('third_party')
77 bld
.RECURSE('source4/lib/stream')
78 bld
.RECURSE('lib/afs')
79 bld
.RECURSE('lib/util')
80 bld
.RECURSE('lib/tdb_wrap')
81 bld
.RECURSE('lib/tdr')
82 bld
.RECURSE('lib/tsocket')
83 bld
.RECURSE('lib/crypto')
84 bld
.RECURSE('lib/torture')
86 bld
.RECURSE('source4/lib/com')
87 bld
.RECURSE('source4/dns_server')
88 bld
.RECURSE('source4/echo_server')
89 bld
.RECURSE('source4/smb_server')
90 bld
.RECURSE('source4/rpc_server')
91 bld
.RECURSE('source4/ldap_server')
92 bld
.RECURSE('source4/web_server')
93 bld
.RECURSE('source4/winbind')
94 bld
.RECURSE('source4/nbt_server')
95 bld
.RECURSE('source4/wrepl_server')
96 bld
.RECURSE('source4/cldap_server')
97 bld
.RECURSE('source4/ntp_signd')
98 bld
.RECURSE('source4/utils')
99 bld
.RECURSE('source4/ntvfs')
100 bld
.RECURSE('source4/torture')
101 bld
.RECURSE('librpc')
102 bld
.RECURSE('source4')
103 bld
.RECURSE('source4/libcli')
104 bld
.RECURSE('libcli/smb')
105 bld
.RECURSE('libcli/util')
106 bld
.RECURSE('libcli/cldap')
107 bld
.RECURSE('lib/smbconf')
108 bld
.RECURSE('lib/async_req')
109 bld
.RECURSE('lib/dbwrap')
110 bld
.RECURSE('libcli/security')
111 bld
.RECURSE('libcli/ldap')
112 bld
.RECURSE('libcli/nbt')
113 bld
.RECURSE('libcli/netlogon')
114 bld
.RECURSE('libcli/auth')
115 bld
.RECURSE('libcli/lsarpc')
116 bld
.RECURSE('libcli/drsuapi')
117 bld
.RECURSE('libcli/echo')
118 bld
.RECURSE('libcli/dns')
119 bld
.RECURSE('libcli/samsync')
120 bld
.RECURSE('libcli/registry')
121 bld
.RECURSE('lib/mscat')
122 bld
.RECURSE('source4/lib/policy')
123 bld
.RECURSE('libcli/named_pipe_auth')
124 if bld
.CONFIG_GET('ENABLE_SELFTEST'):
125 bld
.RECURSE('testsuite/unittests')
127 if bld
.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
128 if bld
.CONFIG_GET("HEIMDAL_KRB5_CONFIG") and bld
.CONFIG_GET("USING_SYSTEM_KRB5"):
129 # When both HEIMDAL_KRB5_CONFIG and KRB5_CONFIG are set and not equal,
130 # it means one is Heimdal-specific (krb5-config.heimdal, for example)
131 # and there is system heimdal
132 bld
.PROCESS_SEPARATE_RULE('system_heimdal')
134 bld
.PROCESS_SEPARATE_RULE('embedded_heimdal')
136 bld
.PROCESS_SEPARATE_RULE('system_mitkrb5')
138 bld
.RECURSE('libcli/smbreadline')
139 if bld
.AD_DC_BUILD_IS_ENABLED():
140 bld
.RECURSE('source4/setup')
141 bld
.RECURSE('source4/kdc')
142 if bld
.env
.with_ctdb
:
144 bld
.RECURSE('source4/scripting')
147 bld
.RECURSE('libds/common')
148 bld
.RECURSE('lib/pthreadpool')
149 bld
.RECURSE('source3')
150 bld
.RECURSE('dfs_server')
151 bld
.RECURSE('file_server')
152 bld
.RECURSE('lib/krb5_wrap')
153 bld
.RECURSE('packaging')
155 bld
.RECURSE('testsuite/headers')
158 bld
.DUP_SYMBOL_CHECK()