Update Makefile ...
authorRichard Sharpe <sharpe@samba.org>
Thu, 13 Nov 2003 21:42:07 +0000 (21:42 +0000)
committerRichard Sharpe <sharpe@samba.org>
Thu, 13 Nov 2003 21:42:07 +0000 (21:42 +0000)
(This used to be commit b92fd87b2461dff0e05ad4a7b0a475539c21d4c0)

examples/libsmbclient/Makefile

index 5fe9977c0ae1bc0885bb06683dd8a2fdad88e1de..c84cc3c977ec128e4239ebcbec659fcf5e7d183c 100644 (file)
@@ -2,12 +2,15 @@
 CC = gcc
 
 SAMBA_INCL = ../../source/include
+EXTLIB_INCL = -I/usr/include/gtk-1.2 \
+             -I/usr/include/glib-1.2 \
+             -I/usr/lib/glib/include
 
-CFLAGS = -I$(SAMBA_INCL)
+CFLAGS = -I$(SAMBA_INCL) $(EXTLIB_INCL)
 
 LDFLAGS = -L/usr/lib
 
-all: testsmbc tree
+all: testsmbc tree testacl
 
 testsmbc: testsmbc.o 
        @echo Linking testsmbc
@@ -21,5 +24,9 @@ tree: tree.o
        @echo Linking tree
        @$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient $<
 
+testacl: testacl.o
+       @echo Linking testacl
+       @$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient -lpopt $<
+
 clean:
        @rm -f *.o *~