s4-waf: move to a universal method of recursing into subdirs
[idra/samba.git] / source4 / auth / wscript_build
1 #!/usr/bin/env python
2
3 bld.RECURSE('gensec')
4 bld.RECURSE('kerberos')
5 bld.RECURSE('ntlmssp')
6 bld.RECURSE('ntlm')
7 bld.RECURSE('credentials')
8
9 bld.SAMBA_SUBSYSTEM('auth_session',
10         source='session.c',
11         autoproto='session_proto.h',
12         public_deps='CREDENTIALS',
13         public_headers='session.h',
14         header_path='samba',
15         deps='SAMDB'
16         )
17
18
19 bld.SAMBA_SUBSYSTEM('samba_server_gensec',
20         source='samba_server_gensec.c',
21         public_deps='CREDENTIALS gensec auth'
22         )
23
24
25 bld.SAMBA_SUBSYSTEM('auth_system_session',
26         source='system_session.c',
27         autoproto='system_session_proto.h',
28         public_deps='CREDENTIALS',
29         deps='auth_session LIBSAMBA-UTIL LIBSECURITY'
30         )
31
32
33 bld.SAMBA_SUBSYSTEM('auth_sam',
34         source='sam.c',
35         autoproto='auth_sam.h',
36         public_deps='SAMDB UTIL_LDB LIBSECURITY ldb tevent',
37         deps=''
38         )
39
40
41 bld.SAMBA_SUBSYSTEM('auth_sam_reply',
42         source='auth_sam_reply.c',
43         deps='talloc',
44         autoproto='auth_sam_reply.h'
45         )
46
47
48 bld.SAMBA_PYTHON('pyauth',
49         source='pyauth.c',
50         public_deps='auth_system_session',
51         deps='SAMDB PYTALLOC pyparam_util',
52         realname='samba/auth.so'
53         )
54