1#! make -f 2#---------------------------------------------------------------------------- 3# Project: TwlSDK - tcl - demos.TWL - tcl-1 4# File: Makefile 5# 6# Copyright 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:: 2008-10-07#$ 15# $Rev: 8888 $ 16# $Author: onozawa_yuki $ 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 screen.c font.c 32TARGET_BIN = tcl_1.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 40 41include $(TWLSDK_ROOT)/build/buildtools/commondefs 42include $(TWLSDK_ROOT)/build/buildtools/commondefs.gx.demolib 43 44 45#------------------------- 46#-- This is a tentative measure until TCL is officially added to commondefs 47 48TWL_LIBS_EX += libtcl$(TWL_LIBSUFFIX).a 49 50 51#---------------------------------------------------------------------------- 52 53do-build: $(TARGETS) 54 55include $(TWLSDK_ROOT)/build/buildtools/modulerules 56 57#===== End of Makefile ===== 58