diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,17 +1,14 @@ CPM=cpm -TEST=test +OBJ=run DEPS=Smurf.dcl Smurf.icl SmurfParse.dcl SmurfParse.icl -all: $(TEST) +all: $(OBJ) -$(TEST): %: %.icl $(DEPS) +$(OBJ): %: %.icl $(DEPS) $(CPM) project $@.prj build -run_test: $(TEST) - ./$^ - clean: - rm -fvr $(TEST) Clean\ System\ Files + rm -fvr $(OBJ) Clean\ System\ Files .PHONY: all clean run_test |