From d8e35f882879e189f55b3bca818dd44cc5f0c6fa Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 26 Dec 2005 18:03:50 +0000 Subject: r12498: Eliminate INIT_OBJ_FILES and ADD_OBJ_FILES. We were not using the difference between these at all, and in the future the fact that INIT_OBJ_FILES include smb_build.h will be sufficient to have recompiles at the right time. (This used to be commit b24f2583edee38abafa58578d8b5c4b43e517def) --- source4/auth/config.mk | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'source4/auth/config.mk') diff --git a/source4/auth/config.mk b/source4/auth/config.mk index d572c5e89a..b620cece96 100644 --- a/source4/auth/config.mk +++ b/source4/auth/config.mk @@ -9,7 +9,7 @@ include credentials/config.mk [MODULE::auth_sam] INIT_FUNCTION = auth_sam_init SUBSYSTEM = AUTH -INIT_OBJ_FILES = \ +OBJ_FILES = \ auth_sam.o REQUIRED_SUBSYSTEMS = \ SAMDB @@ -21,7 +21,7 @@ REQUIRED_SUBSYSTEMS = \ [MODULE::auth_anonymous] INIT_FUNCTION = auth_anonymous_init SUBSYSTEM = AUTH -INIT_OBJ_FILES = \ +OBJ_FILES = \ auth_anonymous.o # End MODULE auth_anonymous ####################### @@ -31,7 +31,7 @@ INIT_OBJ_FILES = \ [MODULE::auth_winbind] INIT_FUNCTION = auth_winbind_init SUBSYSTEM = AUTH -INIT_OBJ_FILES = \ +OBJ_FILES = \ auth_winbind.o REQUIRED_SUBSYSTEMS = \ LIBWINBIND_CLIENT \ @@ -44,7 +44,7 @@ REQUIRED_SUBSYSTEMS = \ [MODULE::auth_developer] INIT_FUNCTION = auth_developer_init SUBSYSTEM = AUTH -INIT_OBJ_FILES = \ +OBJ_FILES = \ auth_developer.o # End MODULE auth_developer ####################### @@ -54,7 +54,7 @@ INIT_OBJ_FILES = \ [MODULE::auth_unix] INIT_FUNCTION = auth_unix_init SUBSYSTEM = AUTH -INIT_OBJ_FILES = \ +OBJ_FILES = \ auth_unix.o REQUIRED_SUBSYSTEMS = \ EXT_LIB_CRYPT EXT_LIB_PAM PAM_ERRORS @@ -67,9 +67,8 @@ OBJ_FILES = pam_errors.o ####################### # Start SUBSYSTEM AUTH [SUBSYSTEM::AUTH] -INIT_OBJ_FILES = \ - auth.o -ADD_OBJ_FILES = \ +OBJ_FILES = \ + auth.o \ auth_util.o \ auth_sam_reply.o \ ntlm_check.o \ -- cgit