mirror of
https://github.com/rvtr/SLOT-1-Boot-Menu.git
synced 2025-06-18 12:25:32 -04:00

I can't actually test this feature right now. melonDS doesn't seem to support jumping from `nand:/tmp/jump.app`, and I can't set up WINE to test with no$gba. I'll set up my other computer later.
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
#! make -f
|
|
#---------------------------------------------------------------------------
|
|
# Project: SLOT-1 Boot Menu
|
|
# File: Makefile
|
|
#
|
|
# $Date:: 2024-02-04#$
|
|
# $Author: Lillian Skinner (rmc) $
|
|
#---------------------------------------------------------------------------
|
|
|
|
# SUBDIRS = banner \
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
TARGET_PLATFORM := TWL
|
|
|
|
TWL_ARCHGEN = LIMITED
|
|
|
|
TARGET_BIN = SLOT1_Booter.srl
|
|
|
|
INCDIR = ./include $(TWLSDK_ROOT)/build/libraries/os/common/include
|
|
SRCDIR = ./src $(TWLSDK_ROOT)/build/libraries/os/common/src
|
|
SRCS = main.c screen.c font.c twlnmenu.c
|
|
|
|
MAKEROM_ROMROOT = ./data
|
|
MAKEROM_ROMFILES = *.srl
|
|
|
|
ROM_SPEC = specfile.rsf
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
include $(TWLSDK_ROOT)/build/buildtools/commondefs
|
|
include $(TWLSDK_ROOT)/build/buildtools/commondefs.gx.demolib
|
|
|
|
# MAKEROM = $(TWLSDK_ROOT)/tools/bin/makerom.TWL.secure.exe
|
|
|
|
do-build: $(TARGETS)
|
|
|
|
include $(TWLSDK_ROOT)/build/buildtools/modulerules
|
|
|