1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-07 17:18:11 +03:00
samba-mirror/examples/libsmbclient/Makefile
Richard Sharpe 9178d7591b Make sure we compile with gcc by default.
(This used to be commit 93c45024cd)
2001-06-30 11:08:06 +00:00

26 lines
483 B
Makefile

#
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 *~