aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b4f457c2cd4623919e39c65fba58f04aeb13f166 (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

clean:
	rm -rf $(TESTS)