summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-06-30 04:01:51 +0000
committerRichard Sharpe <sharpe@samba.org>2001-06-30 04:01:51 +0000
commit89cf21971736c63d0dfb80563f85afd33af2237a (patch)
tree7dc182966dcdf37d15c0d691830fdb5eab2aae53 /examples/libsmbclient
parent064b4904f9695a766acc0d87a630e18a59e5c540 (diff)
downloadsamba-89cf21971736c63d0dfb80563f85afd33af2237a.tar.gz
samba-89cf21971736c63d0dfb80563f85afd33af2237a.tar.xz
samba-89cf21971736c63d0dfb80563f85afd33af2237a.zip
Add a static linking target to the examples Makefile so I can test out static linking ...
(This used to be commit 9627bace72eb3be322f8895b055a31768e551136)
Diffstat (limited to 'examples/libsmbclient')
-rw-r--r--examples/libsmbclient/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile
index 20bc99cac08..3b56def3fdf 100644
--- a/examples/libsmbclient/Makefile
+++ b/examples/libsmbclient/Makefile
@@ -12,9 +12,13 @@ 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 *~ \ No newline at end of file
+ @rm -f *.o *~