mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 06:40:14 +00:00
28 lines
729 B
Makefile
28 lines
729 B
Makefile
#Configuration for IRX
|
|
EE_BIN2C = bin2c
|
|
IRX_DIR = $(PS2SDK)/iop/irx
|
|
|
|
#IRX modules
|
|
# IRX modules - modules have to be in IRX_DIR
|
|
IRX_FILES += mtapman.irx padman.irx poweroff.irx
|
|
IRX_FILES += iomanX.irx fileXio.irx sio2man.irx mcman.irx mcserv.irx
|
|
IRX_FILES += usbd.irx bdm.irx bdmfs_vfat.irx usbmass_bd.irx
|
|
IRX_FILES += ps2dev9.irx ps2atad.irx ps2hdd.irx ps2fs.irx
|
|
IRX_FILES += libsd.irx audsrv.irx cdfs.irx
|
|
IRX_C_FILES = $(IRX_FILES:.irx=_irx.c)
|
|
|
|
all: irxs
|
|
|
|
# Specific file name and output per IRX Module
|
|
%.irx:
|
|
$(EE_BIN2C) $(IRX_DIR)/$@ $(@:.irx=_irx.c) $(@:.irx=_irx)
|
|
|
|
irxs: $(IRX_FILES)
|
|
|
|
clean:
|
|
rm -f $(IRX_C_FILES)
|
|
|
|
#Include preferences
|
|
include $(PS2SDK)/samples/Makefile.pref
|
|
include $(PS2SDK)/samples/Makefile.eeglobal
|