From 18d84b1351ffee0eb302686190cd1465bfc0582a Mon Sep 17 00:00:00 2001 From: CrashOveride95 Date: Sat, 2 Jan 2021 22:52:48 -0500 Subject: [PATCH] Change ique to bb in makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 39927956..691f25c0 100644 --- a/Makefile +++ b/Makefile @@ -20,15 +20,15 @@ TARGET_N64 ?= 1 # Location of official N64 libraries # CONSOLE - selects the console to target -# jp - builds the 1996 Japanese version -# us - builds the 1996 North American version +# bb - Targets the iQue Player (codenamed BB) +# n64 - Targets the N64 CONSOLE ?= n64 -$(eval $(call validate-option,CONSOLE,n64 ique)) +$(eval $(call validate-option,CONSOLE,n64 bb)) ifeq ($(CONSOLE),n64) INCLUDE_DIRS += include/n64 LIBS_DIR := lib/n64 -else ifeq ($(CONSOLE),ique) +else ifeq ($(CONSOLE),bb) INCLUDE_DIRS += include/ique LIBS_DIR := lib/ique DEFINES += BBPLAYER=1