diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-14 17:22:58 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-14 17:22:58 +0200 |
commit | e9017ba418202b4b191c5a9ad4a96857558ce606 (patch) | |
tree | 7a5069a59fde6de060a8946fa1b04a22333b3078 /source4/ntptr | |
parent | ffc5cbfe803326a1c3bf55684717af910d091c5a (diff) | |
download | samba-e9017ba418202b4b191c5a9ad4a96857558ce606.tar.gz samba-e9017ba418202b4b191c5a9ad4a96857558ce606.tar.bz2 samba-e9017ba418202b4b191c5a9ad4a96857558ce606.zip |
Use _OBJ_FILES variables in a couple more places.
(This used to be commit 92856d5054106894b65cd1a1b5119c0facfc4cff)
Diffstat (limited to 'source4/ntptr')
-rw-r--r-- | source4/ntptr/config.mk | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/ntptr/config.mk b/source4/ntptr/config.mk index 4c1f46ff17..dda4c29444 100644 --- a/source4/ntptr/config.mk +++ b/source4/ntptr/config.mk @@ -5,21 +5,22 @@ [MODULE::ntptr_simple_ldb] INIT_FUNCTION = ntptr_simple_ldb_init SUBSYSTEM = ntptr -OBJ_FILES = \ - simple_ldb/ntptr_simple_ldb.o PRIVATE_DEPENDENCIES = \ LIBLDB NDR_SPOOLSS DCERPC_COMMON # End MODULE ntptr_simple_ldb ################################################ +ntptr_simple_ldb_OBJ_FILES = ntptr/simple_ldb/ntptr_simple_ldb.o + ################################################ # Start SUBSYSTEM ntptr [SUBSYSTEM::ntptr] PRIVATE_PROTO_HEADER = ntptr_proto.h -OBJ_FILES = \ - ntptr_base.o \ - ntptr_interface.o PUBLIC_DEPENDENCIES = DCERPC_COMMON # # End SUBSYSTEM ntptr ################################################ + +ntptr_OBJ_FILES = \ + ntptr/ntptr_base.o \ + ntptr/ntptr_interface.o |