aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e95795bf551bf47bdd32094646ec39e5f9afcdf2 (plain)
1
2
3
4
5
6
7
8
9
10
offs 	 = $(shell seq 0 1 16)
targets  = $(addprefix test_,$(offs))

all: $(targets)

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

clean:
	rm -f test_*