aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-22 23:17:50 +0200
committerBad Diode <bd@badd10de.dev>2021-05-22 23:17:50 +0200
commit97d1c4246e167ab493175d890409c4154628760c (patch)
tree41e9b05c3e4a890cb7e8491d55173dcd84964ab8 /Makefile
parentefbee96caa1452486a007eeeabb5073aa9025dae (diff)
downloaduxngba-97d1c4246e167ab493175d890409c4154628760c.tar.gz
uxngba-97d1c4246e167ab493175d890409c4154628760c.zip
Include bin2carr on the tools directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 89f64a2..d91466d 100644
--- a/Makefile
+++ b/Makefile
@@ -52,10 +52,10 @@ else
52 CFLAGS += $(RELEASE_CFLAGS) 52 CFLAGS += $(RELEASE_CFLAGS)
53endif 53endif
54 54
55main: $(BUILD_DIR) $(ROM) $(BIN) 55main: tools $(BUILD_DIR) $(ROM) $(BIN)
56 56
57$(ROM): 57$(ROM):
58 ../tools/bin2carr/build/bin2carr $(ROM_SRC) \ 58 ./tools/bin2carr/build/bin2carr $(ROM_SRC) \
59 -n uxn_rom \ 59 -n uxn_rom \
60 -e u16 \ 60 -e u16 \
61 -o $(ROM) 61 -o $(ROM)
@@ -81,3 +81,6 @@ run: main
81clean: 81clean:
82 rm $(ROM) 82 rm $(ROM)
83 rm -r $(BUILD_DIR) 83 rm -r $(BUILD_DIR)
84
85tools:
86 make -C tools/bin2carr