aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4adbd656d8be62e7cfab3e223a22e0334f2cac14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CPM=cpm
OBJ=run
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