blob: a3dd3f3e0b059254e14d23c8245f8e9bc905e69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#OPT = -g -ftest-coverage -fprofile-arcs
#LIBS = -lgcov
OPT = -O
prefix = @prefix@
exec_prefix = @exec_prefix@
includedir = @includedir@
libdir = @libdir@
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))
install:
cp libtalloc.a $(libdir)
cp talloc.h $(includedir)
cp talloc.pc $(libdir)/pkgconfig
clean:
rm -f *~ *.o testsuite *.gc??
gcov:
gcov talloc.c
|