build: waf quicktest nearly works
[samba.git] / source4 / auth / ntlm / wscript_build
1 bld.SAMBA_MODULE('auth_sam_module',
2         source='auth_sam.c',
3         subsystem='auth',
4         init_function='auth_sam_init',
5         deps='SAMDB auth_sam ntlm_check'
6         )
7
8
9 bld.SAMBA_MODULE('auth_anonymous',
10         source='auth_anonymous.c',
11         subsystem='auth',
12         init_function='auth_anonymous_init'
13         )
14
15
16 bld.SAMBA_MODULE('auth_server',
17         source='auth_server.c',
18         subsystem='auth',
19         init_function='auth_server_init',
20         deps='LIBSAMBA-UTIL LIBCLI_SMB'
21         )
22
23
24 bld.SAMBA_MODULE('auth_winbind',
25         source='auth_winbind.c',
26         subsystem='auth',
27         init_function='auth_winbind_init',
28         deps='NDR_WINBIND MESSAGING LIBWINBIND-CLIENT LIBWBCLIENT'
29         )
30
31
32 bld.SAMBA_MODULE('auth_developer',
33         source='auth_developer.c',
34         subsystem='auth',
35         init_function='auth_developer_init'
36         )
37
38
39 bld.SAMBA_MODULE('auth_unix',
40         source='auth_unix.c',
41         subsystem='auth',
42         init_function='auth_unix_init',
43         deps='CRYPT PAM PAM_ERRORS NSS_WRAPPER UID_WRAPPER LIBTSOCKET'
44         )
45
46
47 bld.SAMBA_SUBSYSTEM('PAM_ERRORS',
48         source='pam_errors.c'
49         )
50
51
52 bld.SAMBA_MODULE('auth',
53         source='auth.c auth_util.c auth_simple.c',
54         autoproto='auth_proto.h',
55         subsystem='service',
56         init_function='server_service_auth_init',
57         deps='LIBSAMBA-UTIL LIBSECURITY SAMDB CREDENTIALS UTIL_TEVENT',
58         internal_module=True
59         )
60