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/ntvfs/config.mk | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'source4/ntvfs/config.mk') diff --git a/source4/ntvfs/config.mk b/source4/ntvfs/config.mk index a600a9a9a0..1c37a608bf 100644 --- a/source4/ntvfs/config.mk +++ b/source4/ntvfs/config.mk @@ -7,7 +7,7 @@ include unixuid/config.mk [MODULE::ntvfs_cifs] INIT_FUNCTION = ntvfs_cifs_init SUBSYSTEM = NTVFS -INIT_OBJ_FILES = \ +OBJ_FILES = \ cifs/vfs_cifs.o REQUIRED_SUBSYSTEMS = \ LIBCLI @@ -19,9 +19,8 @@ REQUIRED_SUBSYSTEMS = \ [MODULE::ntvfs_simple] INIT_FUNCTION = ntvfs_simple_init SUBSYSTEM = NTVFS -INIT_OBJ_FILES = \ - simple/vfs_simple.o -ADD_OBJ_FILES = \ +OBJ_FILES = \ + simple/vfs_simple.o \ simple/svfs_util.o # End MODULE ntvfs_cifs ################################################ @@ -31,7 +30,7 @@ ADD_OBJ_FILES = \ [MODULE::ntvfs_print] INIT_FUNCTION = ntvfs_print_init SUBSYSTEM = NTVFS -INIT_OBJ_FILES = \ +OBJ_FILES = \ print/vfs_print.o # End MODULE ntvfs_print ################################################ @@ -41,7 +40,7 @@ INIT_OBJ_FILES = \ [MODULE::ntvfs_ipc] SUBSYSTEM = NTVFS INIT_FUNCTION = ntvfs_ipc_init -INIT_OBJ_FILES = \ +OBJ_FILES = \ ipc/vfs_ipc.o \ ipc/ipc_rap.o \ ipc/rap_server.o @@ -55,7 +54,7 @@ INIT_OBJ_FILES = \ [MODULE::ntvfs_nbench] SUBSYSTEM = NTVFS INIT_FUNCTION = ntvfs_nbench_init -INIT_OBJ_FILES = \ +OBJ_FILES = \ nbench/vfs_nbench.o # End MODULE ntvfs_nbench ################################################ @@ -63,7 +62,7 @@ INIT_OBJ_FILES = \ ################################################ # Start SUBSYSTEM ntvfs_common [SUBSYSTEM::ntvfs_common] -ADD_OBJ_FILES = \ +OBJ_FILES = \ common/brlock.o \ common/opendb.o \ common/sidmap.o @@ -80,9 +79,8 @@ MINOR_VERSION = 0 INIT_FUNCTION = ntvfs_init DESCRIPTION = Virtual File System with NTFS semantics RELEASE_VERSION = 1 -INIT_OBJ_FILES = \ - ntvfs_base.o -ADD_OBJ_FILES = \ +OBJ_FILES = \ + ntvfs_base.o \ ntvfs_generic.o \ ntvfs_interface.o \ ntvfs_util.o -- cgit