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/lib/com/config.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/lib/com') diff --git a/source4/lib/com/config.mk b/source4/lib/com/config.mk index 77e3724924..9e66502046 100644 --- a/source4/lib/com/config.mk +++ b/source4/lib/com/config.mk @@ -1,12 +1,12 @@ [SUBSYSTEM::COM] INIT_FUNCTION = com_init -INIT_OBJ_FILES = \ +OBJ_FILES = \ tables.o \ rot.o \ main.o [SUBSYSTEM::DCOM] -INIT_OBJ_FILES = \ +OBJ_FILES = \ dcom/main.o \ dcom/tables.o REQUIRED_SUBSYSTEMS = COM DCOM_PROXY_DCOM RPC_NDR_REMACT \ @@ -14,5 +14,5 @@ REQUIRED_SUBSYSTEMS = COM DCOM_PROXY_DCOM RPC_NDR_REMACT \ [MODULE::com_simple] SUBSYSTEM = COM -INIT_OBJ_FILES = classes/simple.o +OBJ_FILES = classes/simple.o INIT_FUNCTION = com_simple_init -- cgit