summaryrefslogtreecommitdiff
path: root/source4/lib/talloc/Makefile.in
blob: ff4fc7f561edd5109ecd1aa6f5ff98e1de4da01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#OPT = -g -ftest-coverage -fprofile-arcs 
#LIBS = -lgcov
OPT = -O

CFLAGS = $(OPT) -Wall

LIBOBJ = talloc.o

all: libtalloc.a testsuite 

testsuite: $(LIBOBJ) testsuite.o
	$(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS)

libtalloc.a: libtalloc.a($(LIBOBJ))

clean:
	rm -f *~ *.o testsuite *.gc??

gcov:
	gcov talloc.c