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:
19	$(MAKE) setup
20	$(MAKE) build
21	$(MAKE) install
22
23# module name should be set to the name of this subdirectory
24MODULENAME	= arc
25LIB		= TRUE
26
27LIBNAME		= arc
28
29ifdef EPPC
30
31CLIBSRCS	= arc.c
32
33else # MAC
34
35CLIBSRCS    =
36
37endif
38
39# The order of the following includes must NOT be changed
40include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules
41