aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7badbbe..237e92e 100644
--- a/Makefile
+++ b/Makefile
@@ -98,6 +98,14 @@ clean:
SOURCE=
BYTECODE=
+.PHONY: assemble
+assemble: $(ASM_OUT)
+ @$(ASM_OUT) $(SOURCE) $(BYTECODE)
+
+.PHONY: interpret
+interpret: $(VM_OUT)
+ @$(VM_OUT) $(BYTECODE)
+
.PHONY: exec
exec: $(ASM_OUT) $(VM_OUT)
@$(ASM_OUT) $(SOURCE) $(BYTECODE)