summaryrefslogtreecommitdiffstats
path: root/source/lib/netapi/examples/Makefile.in
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 22:17:00 +0200
committerKarolin Seeger <kseeger@samba.org>2008-09-15 13:00:41 +0200
commit7084eff1cb6e4571a02635f42a9df8c65ed33085 (patch)
treefeea4e32931dca17769e35f1a1e33ca373b47922 /source/lib/netapi/examples/Makefile.in
parent415d8e763e72bfdc27b956bbe7206cd104030fa1 (diff)
downloadsamba-7084eff1cb6e4571a02635f42a9df8c65ed33085.tar.gz
samba-7084eff1cb6e4571a02635f42a9df8c65ed33085.tar.xz
samba-7084eff1cb6e4571a02635f42a9df8c65ed33085.zip
netapi: add NetFileEnum example code.
Guenther (cherry picked from commit 32ee2dadab5b2579d53d0ecb106f0e64063da3f7) (cherry picked from commit e0300a2e4d7a05e7c708d8e7fddea290044c1386)
Diffstat (limited to 'source/lib/netapi/examples/Makefile.in')
-rw-r--r--source/lib/netapi/examples/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/lib/netapi/examples/Makefile.in b/source/lib/netapi/examples/Makefile.in
index 2e787572d8a..b1c1e59be77 100644
--- a/source/lib/netapi/examples/Makefile.in
+++ b/source/lib/netapi/examples/Makefile.in
@@ -61,7 +61,8 @@ PROGS = bin/getdc@EXEEXT@ \
bin/share_getinfo@EXEEXT@ \
bin/share_setinfo@EXEEXT@ \
bin/file_close@EXEEXT@ \
- bin/file_getinfo@EXEEXT@
+ bin/file_getinfo@EXEEXT@ \
+ bin/file_enum@EXEEXT@
all: $(PROGS)
@@ -135,6 +136,7 @@ SHAREGETINFO_OBJ = share/share_getinfo.o $(CMDLINE_OBJ)
SHARESETINFO_OBJ = share/share_setinfo.o $(CMDLINE_OBJ)
FILECLOSE_OBJ = file/file_close.o $(CMDLINE_OBJ)
FILEGETINFO_OBJ = file/file_getinfo.o $(CMDLINE_OBJ)
+FILEENUM_OBJ = file/file_enum.o $(CMDLINE_OBJ)
bin/getdc@EXEEXT@: $(BINARY_PREREQS) $(GETDC_OBJ)
@echo Linking $@
@@ -316,6 +318,10 @@ bin/file_getinfo@EXEEXT@: $(BINARY_PREREQS) $(FILEGETINFO_OBJ)
@echo Linking $@
@$(CC) $(FLAGS) -o $@ $(FILEGETINFO_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS)
+bin/file_enum@EXEEXT@: $(BINARY_PREREQS) $(FILEENUM_OBJ)
+ @echo Linking $@
+ @$(CC) $(FLAGS) -o $@ $(FILEENUM_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS)
+
clean:
-rm -f $(PROGS)
-rm -f core */*~ *~ \