r22404: more dependencies which should be private
[samba.git] / source4 / auth / config.mk
1 # auth server subsystem
2 include gensec/config.mk
3 include kerberos/config.mk
4 include ntlmssp/config.mk
5 include credentials/config.mk
6
7 [SUBSYSTEM::auth_sam]
8 PRIVATE_PROTO_HEADER = auth_sam.h
9 OBJ_FILES = sam.o auth_sam_reply.o ntlm_check.o 
10 PUBLIC_DEPENDENCIES = SAMDB
11
12 #######################
13 # Start MODULE auth_sam
14 [MODULE::auth_sam_module]
15 # gensec_krb5 and gensec_gssapi depend on it
16 INIT_FUNCTION = auth_sam_init
17 SUBSYSTEM = auth
18 OBJ_FILES = auth_sam.o
19 PRIVATE_DEPENDENCIES = \
20                 SAMDB auth_sam
21 # End MODULE auth_sam
22 #######################
23
24 #######################
25 # Start MODULE auth_anonymous
26 [MODULE::auth_anonymous]
27 INIT_FUNCTION = auth_anonymous_init
28 SUBSYSTEM = auth
29 OBJ_FILES = auth_anonymous.o
30 # End MODULE auth_anonymous
31 #######################
32
33 #######################
34 # Start MODULE auth_winbind
35 [MODULE::auth_winbind]
36 INIT_FUNCTION = auth_winbind_init
37 SUBSYSTEM = auth
38 OBJ_FILES = auth_winbind.o
39 PRIVATE_DEPENDENCIES = NDR_WINBIND MESSAGING LIBWINBIND-CLIENT
40 # End MODULE auth_winbind
41 #######################
42
43 #######################
44 # Start MODULE auth_developer
45 [MODULE::auth_developer]
46 INIT_FUNCTION = auth_developer_init
47 SUBSYSTEM = auth
48 OBJ_FILES = auth_developer.o
49 # End MODULE auth_developer
50 #######################
51
52 #######################
53 # Start MODULE auth_unix
54 [MODULE::auth_unix]
55 INIT_FUNCTION = auth_unix_init
56 SUBSYSTEM = auth
57 OBJ_FILES = auth_unix.o
58 PRIVATE_DEPENDENCIES = CRYPT PAM PAM_ERRORS
59 # End MODULE auth_unix
60 #######################
61
62 [SUBSYSTEM::PAM_ERRORS]
63 PRIVATE_PROTO_HEADER = pam_errors.h
64 OBJ_FILES = pam_errors.o
65
66 #######################
67 # Start SUBSYSTEM auth
68 [SUBSYSTEM::auth]
69 #VERSION = 0.0.1
70 #SO_VERSION = 0
71 PUBLIC_HEADERS = auth.h
72 PUBLIC_PROTO_HEADER = auth_proto.h
73 OBJ_FILES = \
74                 auth.o \
75                 auth_util.o \
76                 auth_simple.o
77 PUBLIC_DEPENDENCIES = LIBSECURITY SAMDB CREDENTIALS
78 # End SUBSYSTEM auth
79 #######################