r6474: - added a simple talloc web page at http://talloc.samba.org/
[jelmer/samba4-debian.git] / source / lib / talloc / Makefile.in
1 #OPT = -g -ftest-coverage -fprofile-arcs 
2 #LIBS = -lgcov
3 OPT = -O
4
5 CFLAGS = $(OPT) -Wall
6
7 LIBOBJ = talloc.o
8
9 all: libtalloc.a testsuite 
10
11 testsuite: $(LIBOBJ) testsuite.o
12         $(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS)
13
14 libtalloc.a: libtalloc.a($(LIBOBJ))
15
16 clean:
17         rm -f *~ *.o testsuite *.gc??
18
19 gcov:
20         gcov talloc.c