SLOT-1-Boot-Menu/Makefile
rmc 65c8c11906
TwlNmenu boot code (see notes)
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.
2024-02-05 10:50:06 -05:00

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