summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2002-02-02 23:34:05 +0000
committercvs2svn Import User <samba-bugs@samba.org>2002-02-02 23:34:05 +0000
commitca5c04a56ff0692b9d00032835993106ef198b6a (patch)
tree815111ac7b01e063472f3e460271e20f68cc76a9 /examples
parentb163a75eb0282dac0194dd3bec90685e588f9098 (diff)
downloadsamba-ca5c04a56ff0692b9d00032835993106ef198b6a.tar.gz
This commit was manufactured by cvs2svn to create tagsamba-2.2.3
'release-2-2-3'.
Diffstat (limited to 'examples')
-rw-r--r--examples/libsmbclient/Makefile25
-rw-r--r--examples/libsmbclient/README8
2 files changed, 0 insertions, 33 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile
deleted file mode 100644
index 8c1def8a162..00000000000
--- a/examples/libsmbclient/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-CC = gcc
-
-SAMBA_INCL = ../../source/include
-
-CFLAGS = -I$(SAMBA_INCL)
-
-LDFLAGS = -L/usr/lib
-
-all: testsmbc tree
-
-testsmbc: testsmbc.o
- @echo Linking testsmbc
- @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lsmbclient
-
-testsmbc-static: testsmbc.o
- @echo Linking testsmbc
- @$(CC) $(CFLAGS) -static $(LDFLAGS) -o $@ $< -lsmbclient -ldl -lnsl
-
-tree: tree.o
- @echo Linking tree
- @$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient $<
-
-clean:
- @rm -f *.o *~
diff --git a/examples/libsmbclient/README b/examples/libsmbclient/README
deleted file mode 100644
index d9a9f829174..00000000000
--- a/examples/libsmbclient/README
+++ /dev/null
@@ -1,8 +0,0 @@
-Some simple example programs for libsmbclient ...
-
-testsmbc.c is kinda broken as it has many hardcoded bits in it
-
-tree.c is an example of how you might do some of these things with GTK+
-It needs lots of work but shows you some ways to use libsmbclient.
-
-Richard Sharpe, 17-May-2001 ...