summaryrefslogtreecommitdiff
path: root/Makefile
blob: ecfdb875e4128f6854c11d682252cbe80d6c543b (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 unittest.tmp.??????