summaryrefslogtreecommitdiff
path: root/source4/auth/config.mk
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-26 18:03:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:47:45 -0500
commitd8e35f882879e189f55b3bca818dd44cc5f0c6fa (patch)
treee9a9696ef8406b06cdaa2dee0dfcc2d01d594d76 /source4/auth/config.mk
parent448483199fb436309735f5203b3282fca2c517ec (diff)
downloadsamba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.tar.gz
samba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.tar.bz2
samba-d8e35f882879e189f55b3bca818dd44cc5f0c6fa.zip
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)
Diffstat (limited to 'source4/auth/config.mk')
-rw-r--r--source4/auth/config.mk15
1 files changed, 7 insertions, 8 deletions
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 \