aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-10-19 12:50:15 +0200
committerBad Diode <bd@badd10de.dev>2022-10-19 12:50:15 +0200
commitf9058cc2dfa087ffcae8d6fe72d9343dcfc9cc15 (patch)
tree4d54fc6a16a42007ac07edadd7b8b656881953bf /Makefile
parent088c6408bf61c25ed201e2410de3d02e54892d3d (diff)
downloaduxn64-f9058cc2dfa087ffcae8d6fe72d9343dcfc9cc15.tar.gz
uxn64-f9058cc2dfa087ffcae8d6fe72d9343dcfc9cc15.zip
Add initial controller support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f402bd2..2016e10 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ SDK_BIN := $(SDK_BASE)/bin
8LIBULTRA_DIR := $(SDK_BASE)/libultra 8LIBULTRA_DIR := $(SDK_BASE)/libultra
9LIBULTRA_INC := $(LIBULTRA_DIR)/usr/include 9LIBULTRA_INC := $(LIBULTRA_DIR)/usr/include
10LIBULTRA := $(LIBULTRA_DIR)/usr/lib/libgultra.a 10LIBULTRA := $(LIBULTRA_DIR)/usr/lib/libgultra.a
11EMULATOR := ares
11 12
12# Source code location and files to watch for changes. 13# Source code location and files to watch for changes.
13SRC_DIR := src 14SRC_DIR := src
@@ -71,8 +72,7 @@ $(BIN): $(ELF) $(OBJECTS) $(WATCH_SRC) | $(BUILD_DIR)
71 72
72# Test the output .n64 in an emulator. 73# Test the output .n64 in an emulator.
73run: $(BIN) 74run: $(BIN)
74 # TODO: Test roms with MAME or cen64 instead of mupen64 for better accuracy. 75 $(EMULATOR) $(BIN)
75 mupen64plus $(BIN)
76 76
77# Remove build directory. 77# Remove build directory.
78clean: 78clean: