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