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