SLOT-1-Boot-Menu/banner/Makefile
Lillian Skinner 2e7776907a
Add program
2024-02-01 00:42:11 -05:00

33 lines
1014 B
Makefile

#---------------------------------------------------------------------------
# Project: SLOT-1 Boot Menu
# File: Makefile (banner)
#
# This source code is derived from "os_jump" in the TwlSDK
#
# $Date:: 2024-02-01#$
# $Author: Lillian Skinner (rmc) $
#---------------------------------------------------------------------------
TARGET_PLATFORM = TWL
include $(TWLSDK_ROOT)/build/buildtools/commondefs
BANNER_ICON = banner.bmp
BANNER_SPEC = banner.bsf
TARGETS = $(BANNER_SPEC:.bsf=.bnr)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
BANNER_ICON_MIDDLE = $(addprefix $(BANNER_ICON_NAME), .nbfs .nbfc .nbfp)
MAKEBANNER_FLAGS = -N $(BANNER_ICON_NAME)
LDIRT_CLEAN = $(TARGETS) \
$(BANNER_ICON_MIDDLE) \
#----------------------------------------------------------------------------
do-build: $(BANNER_ICON_MIDDLE) $(TARGETS)
#----------------------------------------------------------------------------
include $(TWLSDK_ROOT)/build/buildtools/modulerules