1############################################################################### 2# Makefile for arc 3# 4# Copyright 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############################################################################### 13 14include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs 15 16 17# simply build and install any basic code modules and headers 18all: setup build install 19 20# module name should be set to the name of this subdirectory 21MODULENAME = arc 22LIB = TRUE 23 24LIBNAME = arc 25 26ifdef EPPC 27 28CLIBSRCS = arc.c 29 30else # MAC 31 32CLIBSRCS = 33 34endif 35 36# The order of the following includes must NOT be changed 37include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules 38