1############################################################################### 2# Makefile for DLS1WT 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# $Log: makefile,v $ 13# Revision 1.6 2008/06/23 02:27:02 yasuh-to 14# Changed character from "CLEAN" to "clean" for clean command. 15# 16# Revision 1.5 2006/02/09 07:45:28 yasuh-to 17# Added permission setting. 18# 19# Revision 1.4 2006/02/08 06:21:24 aka 20# Changed copyright. 21# 22# Revision 1.3 2006/02/07 12:13:28 mitu 23# changed for VC.NET 2003 24# 25# Revision 1.2 2005/11/04 06:38:29 aka 26# Modified for Revolution. 27# 28# Revision 1.1 2005/11/04 06:11:51 aka 29# Created. 30# 31############################################################################### 32 33all: builddls1wt 34 35builddls1wt: 36 @chmod u+x buildscript 37 @echo ===========Building DLS1WT================= 38 @./buildscript 39 @echo =========================================== 40 41clean: 42 @chmod u+x buildscript 43 @echo ===========Cleaning DLS1WT================= 44 @./buildscript /clean 45 @echo =========================================== 46 47 48MODULENAME = dls1wt 49X86 = TRUE 50 51include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs 52 53include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules 54