aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-11-08 18:16:53 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-11-08 18:16:53 +0000
commit1935277716b51bea36bc5bba4515654ef2aeffd1 (patch)
treeaf3c61ca3f9b1949e9d95e108f8bbfcb03d4433d
parentcb2416554bc4afd76257dfd4cbd420f2d8e03789 (diff)
downloadovm-1935277716b51bea36bc5bba4515654ef2aeffd1.tar.gz
ovm-1935277716b51bea36bc5bba4515654ef2aeffd1.tar.bz2
ovm-1935277716b51bea36bc5bba4515654ef2aeffd1.zip
Makefile now assembles and interprets instruction-test.asm example first
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b982892..020d43a 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,7 @@ ASM_OUT=$(DIST)/asm.out
## EXAMPLES setup
EXAMPLES_DIST=$(DIST)/examples
EXAMPLES_SRC=examples
-EXAMPLES=$(EXAMPLES_DIST)/fib.out $(EXAMPLES_DIST)/factorial.out $(EXAMPLES_DIST)/instruction-test.out $(EXAMPLES_DIST)/memory-print.out
+EXAMPLES=$(EXAMPLES_DIST)/instruction-test.out $(EXAMPLES_DIST)/fib.out $(EXAMPLES_DIST)/factorial.out $(EXAMPLES_DIST)/memory-print.out
# Things you want to build on `make`
all: $(DIST) lib vm asm examples