aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f017434f8cdc3f74749abe8c2be52b210dde3609 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CPM=cpm
TEST=test
DEPS=Smurf.dcl Smurf.icl SmurfParse.dcl SmurfParse.icl

all: $(TEST)

$(TEST): %: %.icl $(DEPS)
	$(CPM) project $@.prj build

run_test: $(TEST)
	./$^

clean:
	rm -fvr $(TEST) Clean\ System\ Files

.PHONY: all clean run_test