diff options
author | Derrell Lipman <derrell@samba.org> | 2005-03-29 00:42:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:22 -0500 |
commit | fbc611f431db443c23486f768ca5e2bc4db95c24 (patch) | |
tree | eda7acba80812fe7fce924e9bbdbfa9dc971942d /examples/libsmbclient/Makefile | |
parent | fa787af52093e14de4a472d2ccb50b9ec66b10d1 (diff) | |
download | samba-fbc611f431db443c23486f768ca5e2bc4db95c24.tar.gz samba-fbc611f431db443c23486f768ca5e2bc4db95c24.tar.bz2 samba-fbc611f431db443c23486f768ca5e2bc4db95c24.zip |
r6108: Added smbsh/smbwrapper for Linux to example/libsmbclient tree; provided more complete libsmbclient testbrowse utility
(This used to be commit 15736b97c837a16d9c009b8bff18b31429ccbe83)
Diffstat (limited to 'examples/libsmbclient/Makefile')
-rw-r--r-- | examples/libsmbclient/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile index fcd5ef2900..6c89fd431e 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 testbrowse +all: testsmbc tree testacl testbrowse smbsh testsmbc: testsmbc.o @echo Linking testsmbc @@ -32,5 +32,9 @@ testbrowse: testbrowse.o @echo Linking testbrowse @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ -lsmbclient -lpopt $< +smbsh: + make -C smbwrapper + clean: - @rm -f *.o *~ + @rm -f *.o *~ testsmbc tree testacl testbrowse + @make -C smbwrapper clean |