blob: ad6e2fafde40f5f485a5a6c3949a518fcd5c1791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!smake
#
# Makefile for the gu subdirectory
#
include $(ROOT)/usr/include/make/PRdefs
# LCOPTS = -mips2 -non_shared -fullwarn -G 0
LCINCS = -I. -I$(ROOT)/usr/include/PR -I$(ROOT)/usr/include
LCOPTS = -G 0 -g -O
CFILES = \
align.c \
cosf.c \
coss.c \
frustum.c \
guloadtile_bug.c \
loadtextureblockmipmap.c\
lookat.c \
lookathil.c \
lookatref.c \
lookatstereo.c \
mtxcatf.c \
mtxcatl.c \
mtxutil.c \
normalize.c \
ortho.c \
perspective.c \
position.c \
poslight.c \
poslighthil.c \
random.c \
rotate.c \
rotaterpy.c \
scale.c \
sinf.c \
sins.c \
translate.c \
us2dex.c \
us2dex_emu.c \
us2dex2_emu.c \
usprite.c
ASFILES = \
libm_vals.s \
sqrtf.s
OBJECTS = $(CFILES:.c=.o)
default: $(OBJECTS)
include $(COMMONRULES)
|