blob: 79fd0e62ca511871eeac519b68a190a303b74107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
CFLAGS= -g -Wall -std=c99 -I.
LDLIBS=
TESTFLAGS= $(CFLAGS) -Isrc/
ifdef debug
CFLAGS+=-DDEBUG
endif
all: check
bin:; mkdir -p bin/
bin/test_hashmap: src/hashmap.c tests/test_hashmap.c | bin
$(CC) $(TESTFLAGS) $^ -o $@
bin/test_template: src/template.c src/hashmap.c src/vector.c tests/test_template.c vendor/mpc.c | bin
$(CC) $(TESTFLAGS) $^ -o $@
.PHONY: check
check: bin/test_hashmap bin/test_template
for test in $^; do $$test || exit 1; done
.PHONY: clean
clean:; rm -r bin/
|