TwlIPL/build/systemMenu_tools/SystemUpdater/data/Makefile
yosiokat 6e32be5282 SystemUpdater用のmaketad.updaterで作成したTADがSystemUpdater/dataフォルダ内のみで生成される
ようにビルドシステムを修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1531 b08762b0-b915-fc4b-9d8c-17b2551a87ff
2008-05-27 02:17:06 +00:00

67 lines
2.2 KiB
Makefile

#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# 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:
#----------------------------------------------------------------------------
TARGET_FIRM = SYSTEMMENU
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
include $(SYSMENU_ROOT)/build/systemMenu_RED/wlanfirm/commondefs.wlanfirm
include $(SYSMENU_ROOT)/build/systemMenu_RED/DSHashTable/commondefs.DSHashTable
# SystemUpdaterでインポートするTADは専用のmaketadでTAD化します。
MAKETAD := $(SYSMENU_TOOLSDIR)/bin/maketad.updater.exe
MAKETAD_OPTION += -s
#----------------------------------------------------------------------------
LDIRT_CLEAN = HNAA.tad \
HNBA.tad \
HNCA.tad \
HNHA.tad \
menu_launcher.nand
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
do-build : HNAA.tad \
HNBA.tad \
HNCA.tad \
HNHA.tad \
menu_launcher.nand
# maketad.updaterで作られたTADが他のフォルダに残らないように、ここでTAD化処理する。
HNAA.tad: ../../../systemMenu_RED/Launcher/ARM9/bin/ARM9-TS.LTD/$(TWL_BUILD_DIR)/HNAA.srl
$(MAKETAD) $< $(MAKETAD_OPTION) -o $@
HNBA.tad: ../../../systemMenu_RED/MachineSettings/ARM9/bin/ARM9-TS.LTD/$(TWL_BUILD_DIR)/HNBA.srl
$(MAKETAD) $< $(MAKETAD_OPTION) -o $@
HNCA.tad: ../../../systemMenu_RED/wlanfirm/HNCA.tad
$(MAKETAD) $< $(WLANFIRM_MAKETAD_OPTION) -o $@
HNHA.tad: ../../../systemMenu_RED/DSHashTable/HNHA.tad
$(MAKETAD) $< $(DS_HASH_TABLE_MAKETAD_OPTION) -o $@
menu_launcher.nand: ../../../nandfirm/menu-launcher/menu_launcher-$(TWL_BUILD_TYPE)$(CODEGEN_ARCH).nand
cp $< ./$@
#===== End of Makefile =====