summaryrefslogtreecommitdiff
path: root/Makefile
blob: d2b7145ec5d57a5f5796277649025832cccf2f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS = --std=c99 -Wall -Werror --coverage -g
LDFLAGS = --coverage -g

all: unittests

dynstr.o unittests.o: dynstr.h

unittests: unittests.o dynstr.o

check: all
	valgrind --leak-check=full --quiet ./unittests
	
clean:
	rm -f *.o *.a *.so *.gcov *.gcda *.gcno core unittests