1###############################################################################
2# Makefile for Matrix Vector library
3#
4# Copyright 1998, 1999 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# Tian Lim 5/27/1999 	Mac build
13#
14# Tian Lim 3/4/1999 Created
15###############################################################################
16
17# simply build and install any basic code modules and headers
18
19# module name should be set to the name of this subdirectory
20MODULENAME	= mtx
21LIB		= TRUE
22
23LIBNAME		= mtx
24
25
26include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs
27
28CLIBSRCS	= mtx.c \
29                  mtxvec.c \
30                  mtxstack.c \
31                  mtx44.c \
32                  mtx44vec.c \
33                  vec.c \
34                  quat.c \
35                  psmtx.c
36
37# additional targets may be added here
38all: 	setup build install
39include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules
40