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