1###############################################################################
2# Makefile for SampleTool
3#
4# Copyright (C) 2005-2006 Nintendo.  All rights reserved.
5#
6# These coded instructions, statements, and computer programs contain
7# proprietary information of Nintendo of America Inc. and/or Nintendo
8# Company Ltd., and are protected by Federal copyright law.  They may
9# not be disclosed to third parties or copied or duplicated in any form,
10# in whole or in part, without the prior written consent of Nintendo.
11###############################################################################
12
13all:
14	$(MAKE) buildtool
15
16buildtool:
17		@chmod u+x buildscript
18		@echo ===========Building tool=================
19		@./buildscript
20		@echo ===========================================
21
22clean:
23		@chmod u+x buildscript
24		@echo ===========Cleaning tool=================
25		@./buildscript /clean
26		@echo ===========================================
27
28include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs
29
30include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules
31
32
33