aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b9162d84dea244f7bce1dc4b14650f782d69c652 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CLM=clm
CLMFLAGS=-b -nt
TEST=test
DEPS=While.dcl While.icl

all: $(TEST)

$(TEST): %: %.icl $(DEPS)
	$(CLM) $(CLMFLAGS) $@ -o $@

run_test: $(TEST)
	./$^

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

.PHONY: all clean run_test