summaryrefslogtreecommitdiff
path: root/source4/nbt_server/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/nbt_server/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/nbt_server/config.mk')
-rw-r--r--source4/nbt_server/config.mk11
1 files changed, 5 insertions, 6 deletions
diff --git a/source4/nbt_server/config.mk b/source4/nbt_server/config.mk
index af5303bca1..24e69eb52e 100644
--- a/source4/nbt_server/config.mk
+++ b/source4/nbt_server/config.mk
@@ -3,7 +3,7 @@
#######################
# Start SUBSYSTEM WINSDB
[SUBSYSTEM::WINSDB]
-ADD_OBJ_FILES = \
+OBJ_FILES = \
wins/winsdb.o
REQUIRED_SUBSYSTEMS = \
LIBLDB
@@ -13,7 +13,7 @@ REQUIRED_SUBSYSTEMS = \
#######################
# Start SUBSYSTEM NBTD_WINS
[SUBSYSTEM::NBTD_WINS]
-ADD_OBJ_FILES = \
+OBJ_FILES = \
wins/winsserver.o \
wins/winsclient.o \
wins/winswack.o
@@ -25,7 +25,7 @@ REQUIRED_SUBSYSTEMS = \
#######################
# Start SUBSYSTEM NBTD_DGRAM
[SUBSYSTEM::NBTD_DGRAM]
-ADD_OBJ_FILES = \
+OBJ_FILES = \
dgram/request.o \
dgram/netlogon.o \
dgram/ntlogon.o \
@@ -38,9 +38,8 @@ REQUIRED_SUBSYSTEMS = \
#######################
# Start SUBSYSTEM NBTD
[SUBSYSTEM::NBTD]
-INIT_OBJ_FILES = \
- nbt_server.o
-ADD_OBJ_FILES = \
+OBJ_FILES = \
+ nbt_server.o \
interfaces.o \
register.o \
query.o \