mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
・カードアプリのコンポーネント(一部のみ)を判定して表示するツール git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@497 7061adef-622a-194b-ae81-725974e89856
67 lines
1.9 KiB
Makefile
67 lines
1.9 KiB
Makefile
#! make -f
|
|
#----------------------------------------------------------------------------
|
|
# Project: TwlSDK - demos.TWL - nandApp - appliCooperation - cooperationA
|
|
# File: Makefile
|
|
#
|
|
# Copyright 2007 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$
|
|
#----------------------------------------------------------------------------
|
|
|
|
SUBDIRS = banner
|
|
|
|
#-------------------------
|
|
#-- NAND アプリのビルドを指定します。
|
|
|
|
TWL_NANDAPP = TRUE
|
|
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
GAME_CODE = 0VNA
|
|
|
|
TARGET_PLATFORM = TWL
|
|
TWL_ARCHGEN = LIMITED
|
|
|
|
SRCS = main.c NitroGameCardToSD.c \
|
|
misc_simple.c \
|
|
data.c
|
|
|
|
LIBSYSCALL = header/libsyscall.a
|
|
|
|
TARGET_BIN = DSGameCardToSD.tad
|
|
|
|
|
|
#-------------------------
|
|
#-- NAND アプリではいくつかのパラメータの指定のために固有の RSF ファイルが必要です。
|
|
|
|
ROM_SPEC = demo.autogen.rsf
|
|
ROM_SPEC_TEMPLATE = ROM-TS_nand_alt.rsf
|
|
ROM_SPEC_PARAM = MakerCode=01 \
|
|
GameCode=$(GAME_CODE) \
|
|
BannerFile="banner/banner.bnr" \
|
|
PermitLandingNormalJump=TRUE \
|
|
TitleName="DSCARDTOSD"
|
|
|
|
|
|
include $(TWLSDK_ROOT)/build/buildtools/commondefs
|
|
include $(TWLSDK_ROOT)/build/buildtools/commondefs.gx.demolib
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
do-build : $(TARGETS)
|
|
|
|
include $(TWLSDK_ROOT)/build/buildtools/modulerules
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
#===== End of Makefile =====
|