mirror of
https://github.com/samba-team/samba.git
synced 2025-11-18 00:23:50 +03:00
- expanded the talloc_realloc() test a little (I was concerned about a possible bug, which turned out to be an illusion) - don't enable gcov by default in Makefile.talloc
17 lines
258 B
Makefile
17 lines
258 B
Makefile
#OPT = -g -ftest-coverage -fprofile-arcs
|
|
#LIBS = -lgcov
|
|
OPT = -O
|
|
|
|
CFLAGS = $(OPT) -Wall
|
|
|
|
all: testsuite
|
|
|
|
testsuite: talloc.o testsuite.o
|
|
$(CC) $(CFLAGS) -o testsuite testsuite.o talloc.o $(LIBS)
|
|
|
|
clean:
|
|
rm -f *~ *.o testsuite *.gc??
|
|
|
|
gcov:
|
|
gcov talloc.c
|