mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
多段行項目でレイアウトが崩れる部分を修正。 git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1957 b08762b0-b915-fc4b-9d8c-17b2551a87ff
89 lines
2.7 KiB
Makefile
89 lines
2.7 KiB
Makefile
#/*---------------------------------------------------------------------------*
|
||
# Project: TwlIPL - tests - DisplaySystemInformation
|
||
# File: makefile
|
||
#
|
||
# Copyright **** Nintendo. All rights reserved.
|
||
#
|
||
# These coded instructions, statements, and computer programs contain
|
||
# proprietary information of Nintendo of America Inc. and/or Nintendo
|
||
# Company Ltd., and are protected by Federal copyright law. They may
|
||
# not be disclosed to third parties or copied or duplicated in any form,
|
||
# in whole or in part, without the prior written consent of Nintendo.
|
||
#
|
||
# $Date:: $
|
||
# $Rev$
|
||
# $Author$
|
||
# *---------------------------------------------------------------------------*/
|
||
TARGET_FIRM = SYSTEMMENU
|
||
TARGET_PLATFORM = TWL
|
||
TWL_ARCHGEN = LIMITED
|
||
|
||
# •ªŠò<C5A0>ðŒ<C3B0>
|
||
DEFAULT_COMP_ARM7 = racoon
|
||
ROM_SPEC = main_racoon_noSCFG.rsf
|
||
BINDIR = ./bin/$(TWL_BUILDTYPE)/racoon_noSCFG
|
||
|
||
|
||
DISP_INFO = $(call eupath,$(TWL_IPL_RED_ROOT)/build/tests/DisplaySystemInformation)
|
||
|
||
SUBDIRS =
|
||
|
||
MISC_DIR = ../../../systemMenu_RED/misc
|
||
|
||
SRCS = main.c viewSystemInfo.c drawFunc.c control.c\
|
||
strResource.c misc.c \
|
||
$(MISC_DIR)/src/cmn.c
|
||
|
||
LINCLUDES += $(MISC_DIR)/include \
|
||
$(DISP_INFO)/common/include
|
||
|
||
SYSMENU_LIBS = \
|
||
liblcfg$(TWL_LIBSUFFIX).a \
|
||
libsysmenu$(TWL_LIBSUFFIX).a \
|
||
libsysmmcu$(TWL_LIBSUFFIX).a \
|
||
libsysmutil$(TWL_LIBSUFFIX).a \
|
||
libboot$(TWL_LIBSUFFIX).a \
|
||
libds$(TWL_LIBSUFFIX).a \
|
||
libhotsw$(TWL_LIBSUFFIX).a \
|
||
libdht$(TWL_LIBSUFFIX).a \
|
||
libreloc_info$(TWL_LIBSUFFIX).a \
|
||
libnamut$(TWL_LIBSUFFIX).a \
|
||
libsharedfont_launcher$(TWL_LIBSUFFIX).a \
|
||
WDS$(TWL_LIBSUFFIX).a
|
||
|
||
SDK_APPEND_LIBS = \
|
||
libes$(TWL_LIBSUFFIX).a \
|
||
libboc$(TWL_LIBSUFFIX).a \
|
||
libsfs$(TWL_LIBSUFFIX).a \
|
||
libnam$(TWL_LIBSUFFIX).a \
|
||
libsea$(TWL_LIBSUFFIX).a \
|
||
libreboot$(TWL_LIBSUFFIX).a \
|
||
libna$(TWL_LIBSUFFIX).a
|
||
|
||
LLIBRARIES += $(SYSMENU_LIBS) $(SDK_APPEND_LIBS)
|
||
|
||
|
||
TARGET_BIN = DisplaySystemInfo.srl
|
||
|
||
|
||
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
|
||
|
||
MAKEROM = $(TWL_TOOLSDIR)/bin/makerom.TWL.exe
|
||
|
||
DEFAULT_MAKEROM_ARM7_BASE = ../ARM7_$(DEFAULT_COMP_ARM7)/bin/$(TWL_BUILDTYPE_ARM7)/$(DEFAULT_COMP_ARM7)
|
||
DEFAULT_MAKEROM_ARM7 = $(DEFAULT_MAKEROM_ARM7_BASE).$(TWL_ELF_EXT)
|
||
|
||
|
||
#----------------------------------------------------------------------------
|
||
do-build: $(TARGETS)
|
||
|
||
#----------------------------------------------------------------------------
|
||
|
||
|
||
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
|
||
#include $(TWLSDK_ROOT)/build/buildtools/modulerules
|
||
#include $(TWL_IPL_RED_ROOT)/build/tests/RelocateChecker/buildtools/modulerules
|
||
|
||
|
||
#===== End of Makefile =====
|