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