mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
13dbee3ffe
Break up auth/auth.h not to include the world.
Add credentials_krb5.h with the kerberos dependent prototypes.
Andrew Bartlett
(This used to be commit 2b569c42e0
)
80 lines
1.8 KiB
Makefile
80 lines
1.8 KiB
Makefile
# auth server subsystem
|
|
include gensec/config.mk
|
|
include kerberos/config.mk
|
|
include ntlmssp/config.mk
|
|
include credentials/config.mk
|
|
|
|
[SUBSYSTEM::auth_sam]
|
|
PRIVATE_PROTO_HEADER = auth_sam.h
|
|
OBJ_FILES = sam.o auth_sam_reply.o ntlm_check.o
|
|
PUBLIC_DEPENDENCIES = SAMDB
|
|
|
|
#######################
|
|
# Start MODULE auth_sam
|
|
[MODULE::auth_sam_module]
|
|
# gensec_krb5 and gensec_gssapi depend on it
|
|
INIT_FUNCTION = auth_sam_init
|
|
SUBSYSTEM = auth
|
|
OBJ_FILES = auth_sam.o
|
|
PUBLIC_DEPENDENCIES = \
|
|
SAMDB auth_sam
|
|
# End MODULE auth_sam
|
|
#######################
|
|
|
|
#######################
|
|
# Start MODULE auth_anonymous
|
|
[MODULE::auth_anonymous]
|
|
INIT_FUNCTION = auth_anonymous_init
|
|
SUBSYSTEM = auth
|
|
OBJ_FILES = auth_anonymous.o
|
|
# End MODULE auth_anonymous
|
|
#######################
|
|
|
|
#######################
|
|
# Start MODULE auth_winbind
|
|
[MODULE::auth_winbind]
|
|
INIT_FUNCTION = auth_winbind_init
|
|
SUBSYSTEM = auth
|
|
OBJ_FILES = auth_winbind.o
|
|
PUBLIC_DEPENDENCIES = NDR_WINBIND MESSAGING LIBWINBIND-CLIENT
|
|
# End MODULE auth_winbind
|
|
#######################
|
|
|
|
#######################
|
|
# Start MODULE auth_developer
|
|
[MODULE::auth_developer]
|
|
INIT_FUNCTION = auth_developer_init
|
|
SUBSYSTEM = auth
|
|
OBJ_FILES = auth_developer.o
|
|
# End MODULE auth_developer
|
|
#######################
|
|
|
|
#######################
|
|
# Start MODULE auth_unix
|
|
[MODULE::auth_unix]
|
|
INIT_FUNCTION = auth_unix_init
|
|
SUBSYSTEM = auth
|
|
OBJ_FILES = auth_unix.o
|
|
PUBLIC_DEPENDENCIES = CRYPT PAM PAM_ERRORS
|
|
# End MODULE auth_unix
|
|
#######################
|
|
|
|
[SUBSYSTEM::PAM_ERRORS]
|
|
PRIVATE_PROTO_HEADER = pam_errors.h
|
|
OBJ_FILES = pam_errors.o
|
|
|
|
#######################
|
|
# Start SUBSYSTEM auth
|
|
[LIBRARY::auth]
|
|
VERSION = 0.0.1
|
|
SO_VERSION = 0
|
|
PUBLIC_HEADERS = auth.h
|
|
PUBLIC_PROTO_HEADER = auth_proto.h
|
|
OBJ_FILES = \
|
|
auth.o \
|
|
auth_util.o \
|
|
auth_simple.o
|
|
PUBLIC_DEPENDENCIES = LIBSECURITY process_model SAMDB CREDENTIALS
|
|
# End SUBSYSTEM auth
|
|
#######################
|