diff options
author | Derrell Lipman <derrell@samba.org> | 2005-12-25 02:00:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:56 -0500 |
commit | 9d36d5ee2dc42b55e97ff23f2ee2b9ac11aba116 (patch) | |
tree | de1533b0823987b5fe53b6b62352c9ce9e38397d /examples/libsmbclient/Makefile | |
parent | 56b20b83971f94b0692f7e6685b352a76f14ef38 (diff) | |
download | samba-9d36d5ee2dc42b55e97ff23f2ee2b9ac11aba116.tar.gz samba-9d36d5ee2dc42b55e97ff23f2ee2b9ac11aba116.tar.bz2 samba-9d36d5ee2dc42b55e97ff23f2ee2b9ac11aba116.zip |
r12467: r12029@cabra: derrell | 2005-12-24 20:25:59 -0500
add another libsmbclient test program
(This used to be commit 133cd3952b7f5fc9e9ca8d82a33ed1272067a6c8)
Diffstat (limited to 'examples/libsmbclient/Makefile')
-rw-r--r-- | examples/libsmbclient/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile index c324a578d1..a88f4a240c 100644 --- a/examples/libsmbclient/Makefile +++ b/examples/libsmbclient/Makefile @@ -17,6 +17,7 @@ TESTS= testsmbc \ testbrowse \ testbrowse2 \ teststat \ + teststat2 \ testchmod \ testutime \ testread @@ -47,6 +48,10 @@ teststat: teststat.o @echo Linking teststat @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ /usr/local/samba/lib/libsmbclient.so -lpopt $< +teststat2: teststat2.o + @echo Linking teststat2 + @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ /usr/local/samba/lib/libsmbclient.so -lpopt $< + testchmod: testchmod.o @echo Linking testchmod @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ /usr/local/samba/lib/libsmbclient.so -lpopt $< |