aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 093fdba35d3a62611203dc6d4ca02a95a5b63f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SRCS = $(wildcard test/*.c)
TESTS = $(SRCS:.c=)

.PHONY: all

all: tests

tests: $(TESTS)

%: %.c
	$(CC) -I. $< -o $@ -ggdb -std=c99

clean:
	rm -rf $(TESTS)