aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-22 23:40:12 +0200
committerBad Diode <bd@badd10de.dev>2021-05-22 23:40:12 +0200
commitc89ea072ef3a9a83feb1d853bed914a4bcb199c4 (patch)
treea511f124a1bef1c215bd97cbe0b88df3b512b44f /Makefile
parent97d1c4246e167ab493175d890409c4154628760c (diff)
downloaduxngba-c89ea072ef3a9a83feb1d853bed914a4bcb199c4.tar.gz
uxngba-c89ea072ef3a9a83feb1d853bed914a4bcb199c4.zip
Update makefile to try to fix a build issue on macOS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d91466d..bf1f4f6 100644
--- a/Makefile
+++ b/Makefile
@@ -55,10 +55,8 @@ endif
55main: tools $(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 -n uxn_rom -e u16 -o $(ROM) \
59 -n uxn_rom \ 59 $(ROM_SRC)
60 -e u16 \
61 -o $(ROM)
62 60
63# Strip and fix header to create final .gba file. 61# Strip and fix header to create final .gba file.
64$(BIN): $(ELF) 62$(BIN): $(ELF)