diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-07 16:48:07 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-15 17:36:56 +0200 |
commit | 952be0f104a1ccf44b2115bad61304512f096721 (patch) | |
tree | 2c98621d0d212b69eb398304a744f4ae18a6eaad /source4/lib/com | |
parent | f94df9056c82a21b33a8f47fa22a03b79f291b00 (diff) | |
download | samba-952be0f104a1ccf44b2115bad61304512f096721.tar.gz samba-952be0f104a1ccf44b2115bad61304512f096721.tar.bz2 samba-952be0f104a1ccf44b2115bad61304512f096721.zip |
Fix old style syntax in mk files .
Diffstat (limited to 'source4/lib/com')
-rw-r--r-- | source4/lib/com/config.mk | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/source4/lib/com/config.mk b/source4/lib/com/config.mk index 08c459a5f6..24634db1ba 100644 --- a/source4/lib/com/config.mk +++ b/source4/lib/com/config.mk @@ -1,23 +1,17 @@ -[LIBRARY::com] -VERSION = 0.0.1 -SO_VERSION = 0 +[SUBSYSTEM::COM] PRIVATE_PROTO_HEADER = proto.h -OBJ_FILES = \ - tables.o \ - rot.o \ - main.o -[LIBRARY::dcom] -VERSION = 0.0.1 -SO_VERSION = 0 +COM_OBJ_FILES = $(addprefix lib/com/, tables.o rot.o main.o) + +[SUBSYSTEM::DCOM] PRIVATE_PROTO_HEADER = dcom/proto.h -OBJ_FILES = \ - dcom/main.o \ - dcom/tables.o PUBLIC_DEPENDENCIES = com DCOM_PROXY_DCOM RPC_NDR_REMACT \ RPC_NDR_OXIDRESOLVER +DCOM_OBJ_FILES = $(addprefix lib/com/dcom/, main.o tables.o) + [MODULE::com_simple] -SUBSYSTEM = com -OBJ_FILES = classes/simple.o +SUBSYSTEM = COM INIT_FUNCTION = com_simple_init + +com_simple_OBJ_FILES = lib/com/classes/simple.o |