1#! make -f 2#---------------------------------------------------------------------------- 3# Project: TwlSDK - demos.TWL - nandApp - SubBanner 4# File: Makefile 5# 6# Copyright 2007-2008 Nintendo. All rights reserved. 7# 8# These coded instructions, statements, and computer programs contain 9# proprietary information of Nintendo of America Inc. and/or Nintendo 10# Company Ltd., and are protected by Federal copyright law. They may 11# not be disclosed to third parties or copied or duplicated in any form, 12# in whole or in part, without the prior written consent of Nintendo. 13# 14# $Date:: $ 15# $Rev: 8703 $ 16# $Author: ooshimay $ 17#---------------------------------------------------------------------------- 18 19SUBDIRS = banner 20 21#------------------------- 22#-- Specifies a NAND application build 23 24TWL_NANDAPP = TRUE 25 26#---------------------------------------------------------------------------- 27 28TARGET_PLATFORM = TWL 29TWL_ARCHGEN = LIMITED 30 31SRCS = main.c 32TARGET_BIN = SubBanner.tad 33 34 35#------------------------- 36#-- A fixed RSF file is needed to specify several parameters for the NAND application 37 38ROM_SPEC = demo.rsf 39 40MAKEROM_ROMROOT = ./banner 41MAKEROM_ROMFILES = sub_banner.bnr 42 43include $(TWLSDK_ROOT)/build/buildtools/commondefs 44include $(TWLSDK_ROOT)/build/buildtools/commondefs.gx.demolib 45 46#---------------------------------------------------------------------------- 47 48do-build : $(TARGETS) 49 50 51include $(TWLSDK_ROOT)/build/buildtools/modulerules 52 53#---------------------------------------------------------------------------- 54 55#===== End of Makefile ===== 56