summaryrefslogtreecommitdiffstats
path: root/source/auth/config.mk
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-27 19:50:13 +0000
committerJelmer Vernooij <jelmer@samba.org>2006-04-27 19:50:13 +0000
commit1903d234fd97e54094cc6813760cc729e6619c99 (patch)
tree4d7f6d7b4774860d83cf93efd5bad84d28a6e254 /source/auth/config.mk
parent19679ed2017df5d899ca8400da1f192c3b24e8bf (diff)
downloadsamba-1903d234fd97e54094cc6813760cc729e6619c99.tar.gz
samba-1903d234fd97e54094cc6813760cc729e6619c99.tar.xz
samba-1903d234fd97e54094cc6813760cc729e6619c99.zip
r15298: Fix the build using a few hacks in the build system.
Recursive dependencies are now forbidden (the build system will bail out if there are any). I've split up auth_sam.c into auth_sam.c and sam.c. Andrew, please rename sam.c / move its contents to whatever/wherever you think suits best.
Diffstat (limited to 'source/auth/config.mk')
-rw-r--r--source/auth/config.mk18
1 files changed, 11 insertions, 7 deletions
diff --git a/source/auth/config.mk b/source/auth/config.mk
index 6586fbfe5dc..7e2a0ea2cc7 100644
--- a/source/auth/config.mk
+++ b/source/auth/config.mk
@@ -4,19 +4,23 @@ 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
+PUBLIC_DEPENDENCIES = \
+ SAMDB
+
#######################
# Start MODULE auth_sam
-[MODULE::auth_sam]
+[MODULE::auth_sam_module]
# gensec_krb5 and gensec_gssapi depend on it
-OUTPUT_TYPE = MERGEDOBJ
-PRIVATE_PROTO_HEADER = auth_sam.h
INIT_FUNCTION = auth_sam_init
SUBSYSTEM = auth
-OBJ_FILES = \
- auth_sam.o \
- auth_sam_reply.o
+OBJ_FILES = auth_sam.o
PUBLIC_DEPENDENCIES = \
- SAMDB
+ SAMDB auth_sam
# End MODULE auth_sam
#######################