blob: c70c7f01ba5335eedfeac5f991852075ef1ee3ee (
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
SOURCES=$(SOURCE:=.c)
make: $(SOURCE)
leak:
valgrind --leak-check=full --track-origins=yes --log-file=log.txt ./test_key_value_store
clean:
rm -f $(SOURCE)
|