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