summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/examples/Makefile.in
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-17 13:18:02 +0200
committerGünther Deschner <gd@samba.org>2008-06-17 19:58:11 +0200
commitffba83d22d757a26fff07a6fa47cd792f26d066e (patch)
tree0154e35547287e07e62340625cf26f01a505da2e /source3/lib/netapi/examples/Makefile.in
parenta2290e5e0073fdfbfe4d5a4df12ee0a1b25f5f4e (diff)
downloadsamba-ffba83d22d757a26fff07a6fa47cd792f26d066e.tar.gz
samba-ffba83d22d757a26fff07a6fa47cd792f26d066e.tar.bz2
samba-ffba83d22d757a26fff07a6fa47cd792f26d066e.zip
netapi: add NetRemoteTOD example code.
Guenther (This used to be commit 2b82779a401dd1d14f5842872ac37b2454efc92b)
Diffstat (limited to 'source3/lib/netapi/examples/Makefile.in')
-rw-r--r--source3/lib/netapi/examples/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/lib/netapi/examples/Makefile.in b/source3/lib/netapi/examples/Makefile.in
index 13a682ff6d..4b5ce2573b 100644
--- a/source3/lib/netapi/examples/Makefile.in
+++ b/source3/lib/netapi/examples/Makefile.in
@@ -35,7 +35,8 @@ PROGS = bin/getdc@EXEEXT@ \
bin/localgroup_add@EXEEXT@ \
bin/localgroup_del@EXEEXT@ \
bin/localgroup_getinfo@EXEEXT@ \
- bin/localgroup_setinfo@EXEEXT@
+ bin/localgroup_setinfo@EXEEXT@ \
+ bin/remote_tod@EXEEXT@
all: $(PROGS)
@@ -83,6 +84,7 @@ LOCALGROUPADD_OBJ = localgroup/localgroup_add.o $(CMDLINE_OBJ)
LOCALGROUPDEL_OBJ = localgroup/localgroup_del.o $(CMDLINE_OBJ)
LOCALGROUPGETINFO_OBJ = localgroup/localgroup_getinfo.o $(CMDLINE_OBJ)
LOCALGROUPSETINFO_OBJ = localgroup/localgroup_setinfo.o $(CMDLINE_OBJ)
+REMOTETOD_OBJ = server/remote_tod.o $(CMDLINE_OBJ)
bin/getdc@EXEEXT@: $(BINARY_PREREQS) $(GETDC_OBJ)
@echo Linking $@
@@ -160,6 +162,10 @@ bin/localgroup_setinfo@EXEEXT@: $(BINARY_PREREQS) $(LOCALGROUPSETINFO_OBJ)
@echo Linking $@
@$(CC) $(FLAGS) -o $@ $(LOCALGROUPSETINFO_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS)
+bin/remote_tod@EXEEXT@: $(BINARY_PREREQS) $(REMOTETOD_OBJ)
+ @echo Linking $@
+ @$(CC) $(FLAGS) -o $@ $(REMOTETOD_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS)
+
clean:
-rm -f $(PROGS)
-rm -f core */*~ *~ \