1#! make -f
2#============================================================================
3# Project:  RevolutionSDK Extensions
4# File:     Makefile
5#
6# Copyright 2005,2006 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#============================================================================
14include $(REVOLUTION_EXT_ROOT)/build/buildtools/submakerules
15#----------------------------------------------------------------------------
16SUBDIRS         =
17
18ifdef  REX_PRIVATE
19SUBDIRS         += buildsetup libraries
20endif
21
22SUBDIRS         += tools
23
24ifndef REX_NODEMOS
25SUBDIRS         += demos
26
27ifndef REX_NOTESTS
28ifdef  REX_FULLBUILD
29SUBDIRS         += tests
30endif
31endif
32endif
33
34#============================================================================
35# $Log: makefile,v $
36# Revision 1.8  2006/08/25 14:49:02  yasu
37# Added build/tools.
38#
39# Revision 1.7  2006/08/15 06:28:06  seiki_masashi
40# Made the project name standardized to RevolutionSDK Extensions
41#
42# Revision 1.6  2006/07/27 03:10:53  yasu
43# Set package divisions
44#
45# Revision 1.5  2006/07/26 00:16:15  yasu
46# Build operations for tests directory using REX_NOTESTS
47#
48# Revision 1.4  2006/07/19 10:14:04  yasu
49# Changed build control conditions using REX_NODEMO
50#
51# Revision 1.3  2006/07/19 01:08:59  yasu
52# Definitions such as REX_PRIVATE are made after the include for submakerules
53#
54# Revision 1.2  2006/07/18 12:55:04  yasu
55# Adjusted PRIVATE
56#
57# Revision 1.1  2006/07/09 13:10:10  yasu
58# PPC make tree connection complete
59#
60#============================================================================
61