summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-03-19 17:48:08 +0000
committerGerald Carter <jerry@samba.org>2004-03-19 17:48:08 +0000
commit3aac1e549eaf4693ded84be432a2c94b6331ef6d (patch)
treee4253fae42e486abc175495bbfd2088928c3bb0e /examples
parent73ffc394b58fa951bca444506cd9d75a159e7f11 (diff)
downloadsamba-3aac1e549eaf4693ded84be432a2c94b6331ef6d.tar.gz
samba-3aac1e549eaf4693ded84be432a2c94b6331ef6d.tar.xz
samba-3aac1e549eaf4693ded84be432a2c94b6331ef6d.zip
missed some of Derrel's changes
Diffstat (limited to 'examples')
-rw-r--r--examples/libsmbclient/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile
index e7c82a3aee6..fcd5ef29003 100644
--- a/examples/libsmbclient/Makefile
+++ b/examples/libsmbclient/Makefile
@@ -10,7 +10,7 @@ CFLAGS = -I$(SAMBA_INCL) $(EXTLIB_INCL)
LDFLAGS = -L/usr/lib
-all: testsmbc tree testacl
+all: testsmbc tree testacl testbrowse
testsmbc: testsmbc.o
@echo Linking testsmbc
@@ -28,5 +28,9 @@ testacl: testacl.o
@echo Linking testacl
@$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient -lpopt $<
+testbrowse: testbrowse.o
+ @echo Linking testbrowse
+ @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ -lsmbclient -lpopt $<
+
clean:
@rm -f *.o *~