blob: 75a56ef09475953f0a204186d1aae7560320c7f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
CC=gcc
CFLAGS=-g3 -I../ -lnetbytes -Wl,-rpath=../ -L../
LDFLAGS=
SOURCE=test_save test_multiple_write test_multiple_read test_add_elem test_alltypes \
test_key_value_store test_key_value_load test_key_value_match
SOURCES=$(SOURCE:=.c)
make: $(SOURCE)
leak:
valgrind --leak-check=full --track-origins=yes --log-file=log.txt ./test_key_value_load
clean:
rm -f $(SOURCE)
|