We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f36cc1 commit 1a2af22Copy full SHA for 1a2af22
1 file changed
Makefile
@@ -11,7 +11,7 @@ export HEADER
11
12
13
# ---{BUILD CFG}--- #
14
-HAS_EMBED_IRX = 1 # whether to embed or not non vital IRX (wich will be loaded from memcard files)
+HAS_EMBED_IRX ?= 1# whether to embed or not non vital IRX (wich will be loaded from memcard files)
15
DEBUG ?= 0
16
PSX ?= 0 # PSX DESR support
17
HDD ?= 0 #wether to add internal HDD support
@@ -153,10 +153,12 @@ else
153
EE_OBJS += sio2man_irx.o
154
endif
155
156
-ifneq ($(HAS_EMBED_IRX), 1)
+ifeq ($(HAS_EMBED_IRX), 1)
157
$(info --- USB drivers will be embedded)
158
EE_OBJS += usbd_irx.o bdm_irx.o bdmfs_fatfs_irx.o usbmass_bd_irx.o
159
EE_CFLAGS += -DHAS_EMBEDDED_IRX
160
+else
161
+ $(info --- USB drivers will be external)
162
163
164
ifeq ($(HDD), 1)
0 commit comments