aboutsummaryrefslogtreecommitdiff
path: root/Examples/Makefile
blob: efe5bbcf0f783bf71d35b485abc3f8a763ecb39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
thornscripts = $(wildcard *.m)
thorns = ${thornscripts:.m=}

kranc = ../Bin/kranc

all: $(thorns)

$(thorns): % : %.m
	$(kranc) $<

clean:
	rm -rf $(thorns)