summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient/Makefile
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-05-17 02:29:00 +0000
committerRichard Sharpe <sharpe@samba.org>2001-05-17 02:29:00 +0000
commit950821d69cb6dcc723f8610584718c6217136d55 (patch)
treeb1d38730481ff51ad8bbb536764bceb9ce98fc82 /examples/libsmbclient/Makefile
parent87025c223dd33f2e02060c2a5cd45502946c87c6 (diff)
downloadsamba-950821d69cb6dcc723f8610584718c6217136d55.tar.gz
samba-950821d69cb6dcc723f8610584718c6217136d55.tar.xz
samba-950821d69cb6dcc723f8610584718c6217136d55.zip
Adding an examples directory for libsmbclient to the head branch along with
a simple Makefile and a small README ...
Diffstat (limited to 'examples/libsmbclient/Makefile')
-rw-r--r--examples/libsmbclient/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile
new file mode 100644
index 00000000000..20bc99cac08
--- /dev/null
+++ b/examples/libsmbclient/Makefile
@@ -0,0 +1,20 @@
+#
+
+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
+
+tree: tree.o
+ @echo Linking tree
+ @$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient $<
+
+clean:
+ @rm -f *.o *~ \ No newline at end of file