s4-auth Move conversion of security_token to unix_token to auth
[amitay/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 auth4_sam'
16         )
17
18 bld.SAMBA_SUBSYSTEM('auth_unix_token',
19         source='unix_token.c',
20         autoproto='unix_token_proto.h',
21         public_deps='LIBWBCLIENT_OLD',
22         )
23
24
25 bld.SAMBA_SUBSYSTEM('samba_server_gensec',
26         source='samba_server_gensec.c',
27         public_deps='credentials gensec auth4'
28         )
29
30
31 bld.SAMBA_SUBSYSTEM('auth_system_session',
32         source='system_session.c',
33         autoproto='system_session_proto.h',
34         public_deps='credentials',
35         deps='auth_session',
36         )
37
38
39 bld.SAMBA_SUBSYSTEM('auth4_sam',
40         source='sam.c',
41         autoproto='auth_sam.h',
42         public_deps='samdb security ldb tevent',
43         deps=''
44         )
45
46
47 bld.SAMBA_PYTHON('pyauth',
48         source='pyauth.c',
49         public_deps='auth_system_session',
50         deps='samdb pytalloc-util pyparam_util pyldb-util pycredentials auth4',
51         realname='samba/auth.so'
52         )
53