Added recipes to assemble or interpret individually
This commit is contained in:
8
Makefile
8
Makefile
@@ -98,6 +98,14 @@ clean:
|
|||||||
|
|
||||||
SOURCE=
|
SOURCE=
|
||||||
BYTECODE=
|
BYTECODE=
|
||||||
|
.PHONY: assemble
|
||||||
|
assemble: $(ASM_OUT)
|
||||||
|
@$(ASM_OUT) $(SOURCE) $(BYTECODE)
|
||||||
|
|
||||||
|
.PHONY: interpret
|
||||||
|
interpret: $(VM_OUT)
|
||||||
|
@$(VM_OUT) $(BYTECODE)
|
||||||
|
|
||||||
.PHONY: exec
|
.PHONY: exec
|
||||||
exec: $(ASM_OUT) $(VM_OUT)
|
exec: $(ASM_OUT) $(VM_OUT)
|
||||||
@$(ASM_OUT) $(SOURCE) $(BYTECODE)
|
@$(ASM_OUT) $(SOURCE) $(BYTECODE)
|
||||||
|
|||||||
Reference in New Issue
Block a user