1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00
Files
samba-mirror/source/lib/talloc/Makefile.talloc
Andrew Tridgell 4ec47cc108 r4711: - deprecate talloc_destroy()
- 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
2007-10-10 13:08:46 -05:00

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