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