1#! make -f
2#----------------------------------------------------------------------------
3# Project:  TwlSDK - libraries
4# File:     Makefile
5#
6# Copyright 2007-2009 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:: 2009-06-04#$
15# $Rev: 10698 $
16# $Author: okubata_ryoma $
17#----------------------------------------------------------------------------
18TARGET_PLATFORM	=	TWL NITRO
19
20include	$(TWLSDK_ROOT)/build/buildtools/commondefs
21
22export PARALLEL_BUILD=TRUE
23
24#----------------------------------------------------------------------------
25
26SUBDIRS_P	 = 	fx		\
27				gx		\
28				os		\
29				mi		\
30				pxi		\
31				init	\
32				ext		\
33				pad		\
34				exi		\
35				fs		\
36				cp		\
37				spi		\
38				rtc		\
39				wm		\
40				wbt		\
41				wfs		\
42				prc		\
43				card	\
44				mb		\
45				math	\
46				wvr		\
47				snd		\
48				std		\
49				env		\
50				ctrdg	\
51				stubs	\
52				wxc		\
53
54SUBDIRS_P	+= $(PRIVATE_LIBRARIES)
55
56ifneq	($(filter TWL,$(TARGET_PLATFORM_LIST)),)
57SUBDIRS_P	+= cdc camera i2c scfg mcu dsp el
58
59SUBDIRS_P	+= $(PRIVATE_LIBRARIES_TWL)
60
61endif
62
63#----------------------------------------------------------------------------
64export	NITRO_BLXCHECKED = yes
65
66#----------------------------------------------------------------------------
67
68include	$(TWLSDK_ROOT)/build/buildtools/modulerules
69
70
71#===== End of Makefile =====
72