aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: a32c21994b80ade989a612d2f5d8e320a1181e63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CPM=cpm
OBJ=run tree
DEPS=Smurf.dcl Smurf.icl SmurfParse.dcl SmurfParse.icl

all: $(OBJ)

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

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

.PHONY: all clean run_test