From 454bba05dfd3edc3467b791ac2f26693ec8a21d7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 24 May 2004 16:54:41 +0000 Subject: r850: convert SUBSYSTEM AUTH to a config.mk file metze (This used to be commit b29414bd23385ba2502763ed33676a42d176eaf9) --- source4/auth/config.m4 | 10 +++------- source4/auth/config.mk | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 7 deletions(-) create mode 100644 source4/auth/config.mk (limited to 'source4') diff --git a/source4/auth/config.m4 b/source4/auth/config.m4 index 8fc1f5edeb..01e4574d94 100644 --- a/source4/auth/config.m4 +++ b/source4/auth/config.m4 @@ -1,10 +1,6 @@ dnl # AUTH Server subsystem -SMB_MODULE(auth_sam,AUTH,STATIC,[auth/auth_sam.o]) -SMB_MODULE(auth_builtin,AUTH,STATIC,[auth/auth_builtin.o]) +SMB_MODULE_MK(auth_sam,AUTH,STATIC,auth/config.mk) +SMB_MODULE_MK(auth_builtin,AUTH,STATIC,auth/config.mk) -SMB_SUBSYSTEM(AUTH,auth/auth.o, - [auth/auth_ntlmssp.o - auth/auth_util.o - auth/pampass.o - auth/pass_check.o]) +SMB_SUBSYSTEM_MK(AUTH,auth/config.mk) diff --git a/source4/auth/config.mk b/source4/auth/config.mk new file mode 100644 index 0000000000..c9b47e745b --- /dev/null +++ b/source4/auth/config.mk @@ -0,0 +1,30 @@ +# AUTH Server subsystem + +####################### +# Start MODULE auth_sam +[MODULE::auth_sam] +INIT_OBJ_FILES = \ + auth/auth_sam.o +# End MODULE auth_sam +####################### + +####################### +# Start MODULE auth_builtin +[MODULE::auth_builtin] +INIT_OBJ_FILES = \ + auth/auth_builtin.o +# End MODULE auth_builtin +####################### + +####################### +# Start SUBSYSTEM AUTH +[SUBSYSTEM::AUTH] +INIT_OBJ_FILES = \ + auth/auth.o +ADD_OBJ_FILES = \ + auth/auth_ntlmssp.o \ + auth/auth_util.o \ + auth/pampass.o \ + auth/pass_check.o +# End SUBSYSTEM AUTH +####################### -- cgit