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