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)