aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: af152b7ff0c81e55ffdaf1ee361bac20929a24a0 (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 LaTeX.dcl LaTeX.icl

all: $(OBJ)

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

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

.PHONY: all clean run_test