1############################################################################### 2# Makefile for Revolution THP Audio Library 3# 4# Copyright (C)2003-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.2 02/09/2006 07:47:33 yasuh-to 14# Added permission setting. 15# 16# Revision 1.1 02/08/2006 02:56:59 aka 17# Imported from Dolphin Tree. 18# 19# 20# 3 03/09/15 2:07p Akagi 21# 22# 2 03/09/15 2:06p Akagi 23# 24# 1 03/07/01 1:42p Akagi 25# Initial check-in. Modified to divide old THPConv.exe into 2 LIBs and 1 26# EXE by Ohki-san@NTSC. 27# 28# $NoKeywords: $ 29# 30############################################################################### 31 32all: buildthputilities 33 34buildthputilities: 35 @chmod u+x buildscript 36 @echo =======Building thputilities LIB=========== 37 @./buildscript 38 @echo =========================================== 39 40clean: 41 @chmod u+x buildscript 42 @echo =======Cleaning thputilities LIB=========== 43 @./buildscript /CLEAN 44 @echo =========================================== 45 46 47MODULENAME = thputilities 48X86 = TRUE 49 50include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs 51 52include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules 53