aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index f017434..4adbd65 100644
--- a/Makefile
+++ b/Makefile
@@ -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