Added recipes to assemble or interpret individually

This commit is contained in:
2023-11-02 23:30:17 +00:00
parent 07f64b796d
commit 698a823bf2

View File

@@ -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)