commit 984092a
Devine Lu Linvega
·
2024-11-13 17:02:27 +0000 UTC
parent a48fcce
Added opctest to makefile
1 files changed,
+4,
-3
M
makefile
M
makefile
+4,
-3
1@@ -13,7 +13,7 @@ all: src/utils/bios.c bin/uxnasm bin/uxncli bin/uxn11
2
3 run: all bin/mouse.rom
4 @ bin/uxn11 bin/mouse.rom
5-debug: bin/uxnasm-debug bin/uxncli-debug bin/uxn11-debug
6+debug: bin/uxnasm-debug bin/uxncli-debug bin/uxn11-debug bin/opctest.rom
7 @ bin/uxncli-debug bin/opctest.rom
8 test: all
9 bin/uxncli
10@@ -22,8 +22,6 @@ test: all
11 bin/uxn11 -v
12 bin/uxnasm
13 bin/uxnasm -v
14- @ bin/uxnasm etc/opctest.tal bin/opctest.rom
15- @ bin/uxncli bin/opctest.rom
16 install: all
17 @ mkdir -p ${PREFIX}/bin
18 @ cp bin/uxn11 bin/uxnasm bin/uxncli ${PREFIX}/bin
19@@ -42,6 +40,9 @@ archive:
20 clean:
21 @ rm -fr bin
22
23+bin/opctest.rom:
24+ @ bin/uxnasm etc/opctest.tal bin/opctest.rom
25+ @ bin/uxncli bin/opctest.rom
26 bin/mouse.rom: etc/mouse.tal
27 @ bin/uxnasm etc/mouse.tal bin/mouse.rom
28