r15298: Fix the build using a few hacks in the build system.
[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 = \
10                 sam.o \
11                 auth_sam_reply.o
12 PUBLIC_DEPENDENCIES = \
13                 SAMDB
14
15 #######################
16 # Start MODULE auth_sam
17 [MODULE::auth_sam_module]
18 # gensec_krb5 and gensec_gssapi depend on it
19 INIT_FUNCTION = auth_sam_init
20 SUBSYSTEM = auth
21 OBJ_FILES = auth_sam.o
22 PUBLIC_DEPENDENCIES = \
23                 SAMDB auth_sam
24 # End MODULE auth_sam
25 #######################
26
27 #######################
28 # Start MODULE auth_anonymous
29 [MODULE::auth_anonymous]
30 INIT_FUNCTION = auth_anonymous_init
31 SUBSYSTEM = auth
32 OBJ_FILES = auth_anonymous.o
33 # End MODULE auth_anonymous
34 #######################
35
36 #######################
37 # Start MODULE auth_winbind
38 [MODULE::auth_winbind]
39 INIT_FUNCTION = auth_winbind_init
40 SUBSYSTEM = auth
41 OBJ_FILES = auth_winbind.o
42 PUBLIC_DEPENDENCIES = \
43                 LIBWINBIND-CLIENT \
44                 NDR_NETLOGON LIBNDR
45 # End MODULE auth_winbind
46 #######################
47
48 #######################
49 # Start MODULE auth_developer
50 [MODULE::auth_developer]
51 INIT_FUNCTION = auth_developer_init
52 SUBSYSTEM = auth
53 OBJ_FILES = auth_developer.o
54 # End MODULE auth_developer
55 #######################
56
57 #######################
58 # Start MODULE auth_unix
59 [MODULE::auth_unix]
60 INIT_FUNCTION = auth_unix_init
61 SUBSYSTEM = auth
62 OBJ_FILES = auth_unix.o
63 PUBLIC_DEPENDENCIES = CRYPT PAM PAM_ERRORS
64 # End MODULE auth_unix
65 #######################
66
67 [SUBSYSTEM::PAM_ERRORS]
68 PRIVATE_PROTO_HEADER = pam_errors.h
69 OBJ_FILES = pam_errors.o
70
71 #######################
72 # Start SUBSYSTEM auth
73 [SUBSYSTEM::auth]
74 PUBLIC_HEADERS = auth.h
75 PUBLIC_PROTO_HEADER = auth_proto.h
76 OBJ_FILES = \
77                 auth.o \
78                 auth_util.o \
79                 ntlm_check.o \
80                 auth_simple.o
81 PUBLIC_DEPENDENCIES = LIBSECURITY process_model SAMDB
82 # End SUBSYSTEM auth
83 #######################