Makefile
2.02 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!smake -k
# --------------------------------------------------------------------
# Copyright (C) 1997 Nintendo. (Originated by SGI)
#
# $RCSfile: Makefile,v $
# $Revision: 1.1.1.2 $
# $Date: 2002/10/29 08:06:12 $
# --------------------------------------------------------------------
#
# Makefile for game template
#
#
include $(ROOT)/usr/include/make/PRdefs
#FINAL =
#ifdef FINAL
OPTIMIZER = -O2
LCDEFS = -D_FINALROM -DNDEBUG -DF3DEX_GBI_2
N64LIB = -lultra_rom
#else
OPTIMIZER = -g
LCDEFS = -DDEBUG -DF3DEX_GBI_2
N64LIB = -lultra_d
#endif
APP = game
TARGETS = rom
SCRIPTS = terrainfile terrainls terrainlsMM terrainlsrgb
TEXHFILES =
HFILES = $(TEXHFILES) boot.h controller.h font.h font_ext.h \
game.h letters_img.h shared.h static.h
CODEFILES = boot.c game.c controller.c font.c dram_stack.c
CODEOBJECTS = $(CODEFILES:.c=.o)
DATAFILES = gfxinit.c gfxstatic.c cfb.c rsp_cfb.c zbuffer.c
DATAOBJECTS = $(DATAFILES:.c=.o)
CODESEGMENT = codesegment.o
OBJECTS = $(CODESEGMENT) $(DATAOBJECTS)
LCDEFS += $(HW_FLAGS)
LCINCS = -I.
LCOPTS = -fullwarn -wlint,-f -woff 813,819,826,827,852,822 \
-non_shared -G 0
LDFLAGS = $(MKDEPOPT) -nostdlib -L$(ROOT)/usr/lib $(N64LIB)
LDIRT = $(APP) $(TEXHFILES)
default: $(TARGETS)
include $(COMMONRULES)
install: default
$(INSTALL) -m 444 -F /usr/src/PR/demos/terrain \
$(HFILES) $(CODEFILES) $(DATAFILES) $(SCRIPTS) \
terrain.c Makefile spec README
$(CODESEGMENT): $(CODEOBJECTS)
$(LD) -o $(CODESEGMENT) -r $(CODEOBJECTS) $(LDFLAGS)
#ifdef FINAL
$(TARGETS) $(APP): spec $(OBJECTS) $(MAKEROM)
$(MAKEROM) -s 9 -r $(TARGETS) spec
#ifndef NOMAKEMASK
makemask $(TARGETS)
#endif
#else
$(TARGETS) $(APP): spec $(OBJECTS) $(MAKEROM)
$(MAKEROM) -r $(TARGETS) spec
#endif
terrain: terrain.c
$(CC) -o terrain \
-fullwarn -wlint,-f -woff 813,819,826,827,852,822 \
-nostdinc -I$(ROOT)/usr/include $(MKDEPOPT) \
terrain.c -nostdlib -L -L$(ROOT)/usr/lib -lultrahost -lm
font.o: ./letters_img.h