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