SystemUpdaterがFINALROMビルドできるようにMakefileを修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1244 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
kamikawa 2008-04-23 08:28:12 +00:00
parent 9d4ac30b6a
commit 056fe65209
2 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@ static const char* ImportTadFileList[] =
"rom:/data/HNCA.tad"
};
static const char* NandFirmPath = "rom:/data/menu_launcher-RELEASE.nand";
static const char* NandFirmPath = "rom:/data/menu_launcher.nand";
/*---------------------------------------------------------------------------*
àÏ<EFBFBD>è`

View File

@ -31,7 +31,7 @@ MAKETAD = $(SYSMENU_TOOLSDIR)/bin/maketad.updater.exe
LDIRT_CLEAN = HNAA.tad \
HNBA.tad \
HNCA.tad \
menu_launcher-RELEASE.nand
menu_launcher-$(TWL_BUILD_DIR).nand
#----------------------------------------------------------------------------
@ -40,7 +40,7 @@ include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
do-build : HNAA.tad \
HNBA.tad \
HNCA.tad \
menu_launcher-RELEASE.nand
menu_launcher.nand
HNAA.tad: ../../Launcher/ARM9/bin/ARM9-TS.LTD/$(TWL_BUILD_DIR)/main.srl
$(MAKETAD) -s $< $(MAKETAD_FLAGS) -o $@
@ -51,7 +51,7 @@ HNBA.tad: ../../MachineSettings/ARM9/bin/ARM9-TS.LTD/$(TWL_BUILD_DIR)/main.srl
HNCA.tad: ../../wlanfirm/HNCA.srl
$(MAKETAD) -s $< $(MAKETAD_FLAGS) -o $@
menu_launcher-RELEASE.nand: ../../../nandfirm/menu-launcher/menu_launcher-RELEASE.nand
cp $< .
menu_launcher.nand: ../../../nandfirm/menu-launcher/menu_launcher-$(TWL_BUILD_DIR).nand
cp $< ./$@
#===== End of Makefile =====