aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7a077b5b9fe9b3d81fc68322f1e2ba5d014204c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
targets  = test_0
targets += test_1
targets += test_2
targets += test_3
targets += test_4
targets += test_5
targets += test_6
targets += test_7
targets += test_8
targets += test_9
targets += test_10
targets += test_11
targets += test_12
targets += test_13
targets += test_14
targets += test_15
targets += test_16

all: $(targets)

test_%: testn.c
	cc -static -DOFF=$* -O0 -o $@ $^

clean:
	rm -f test_*