From 698a823bf2cd93b31a65b0ac8956b827a59cd102 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 2 Nov 2023 23:30:17 +0000 Subject: Added recipes to assemble or interpret individually --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') 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) -- cgit v1.2.3-13-gbd6f