1#! make -f
2#----------------------------------------------------------------------------
3# Project:  TwlSDK
4# File:     Makefile.FUNCTIONCOST
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:: 2007-11-07#$
15# $Rev: 2155 $
16# $Author: okubata_ryoma $
17#----------------------------------------------------------------------------
18
19TWL_PROFILE_TYPE = FUNCTIONCOST
20
21#----------------------------------------------------------------------------
22
23SUBDIRS			=
24
25#----------------------------------------------------------------------------
26override TARGET_PLATFORM = TWL
27
28TWL_CODEGEN		?= ALL
29TWL_PROC		 =ARM9
30
31# Create libraries for both HYBRID and LIMITED
32TWL_ARCHGEN		 = ALL
33
34SRCDIR			= ../common/src src
35
36SRCS			= os_functionCost.c
37
38TARGET_LIB		= libos.FUNCTIONCOST$(TWL_LIBSUFFIX).a
39
40#----------------------------------------------------------------------------
41include	$(TWLSDK_ROOT)/build/buildtools/commondefs
42
43INSTALL_TARGETS		= $(TARGETS)
44INSTALL_DIR		= $(TWL_INSTALL_LIBDIR)
45
46#----------------------------------------------------------------------------
47
48do-build:		$(TARGETS)
49
50include	$(TWLSDK_ROOT)/build/buildtools/modulerules
51
52#===== End of Makefile =====
53