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