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