diff options
author | Gerald Carter <jerry@samba.org> | 2004-03-19 17:48:08 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-03-19 17:48:08 +0000 |
commit | fd312721ea57c562b70a753a37fcefad66db2e32 (patch) | |
tree | b1de7ffb67e306e6f712a03f64b2e8a40364a603 /examples | |
parent | 07ad7b0e3b076b98383329e53054050946483f8b (diff) | |
download | samba-fd312721ea57c562b70a753a37fcefad66db2e32.tar.gz samba-fd312721ea57c562b70a753a37fcefad66db2e32.tar.xz samba-fd312721ea57c562b70a753a37fcefad66db2e32.zip |
missed some of Derrel's changes
(This used to be commit 3aac1e549eaf4693ded84be432a2c94b6331ef6d)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/libsmbclient/Makefile | 6 |
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 *~ |