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