aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 641e8be2477ac7288e3b650ebe35af60514a430a (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 -pedantic -Wall -Wextra

clean:
	rm -rf $(TESTS)