Makefile
1.8 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
#!smake -k
# --------------------------------------------------------------------
# Copyright (C) 1997,1998 Nintendo. (Originated by SGI)
#
# $RCSfile: Makefile,v $
# $Revision: 1.1.1.2 $
# $Date: 2002/10/29 08:05:58 $
# --------------------------------------------------------------------
#
# Makefile for overlay demo application
#
#
include $(ROOT)/usr/include/make/PRdefs
#FINAL =
#ifdef FINAL
OPTIMIZER = -O2
LCDEFS = -DNDEBUG -D_FINALROM -DF3DEX_GBI_2
N64LIB = -lultra_rom
#else
OPTIMIZER = -g
LCDEFS = -DF3DEX_GBI_2 -DDEBUG
N64LIB = -lultra_d
#endif
APP = overlay
TARGETS = rom
TEXHFILES = brick.h
HFILES = $(TEXHFILES) overlay.h
KERNCFILES = overlay.c dram_stack.c
KERNOBJECTS = $(KERNCFILES:.c=.o)
SEGCFILES = plain.c texture.c cfb.c rsp_cfb.c
OBJECTS = $(SEGCFILES:.c=.o) kernel.o
LCINCS = -I.
LCOPTS = -fullwarn -wlint,-f -woff 813,819,826,827,852 -non_shared -G 0
LDFLAGS = $(MKDEPOPT) -nostdlib -L$(ROOT)/usr/lib $(N64LIB)
LDIRT = plain texture
default: $(TARGETS)
include $(COMMONRULES)
install: default
$(INSTALL) -m 444 -F /usr/src/PR/demos/overlay \
$(HFILES) $(KERNCFILES) $(SEGCFILES) Makefile spec
#
# Note the use of the "-u" flag to force inclusion of the given routines
# into the kernel segment, although they are not referenced by any other
# code in the kernel segment. They are, however, referenced by the
# "plain" and "texture" segments and thus these routines are included in
# the kernel segment.
#
kernel.o: $(KERNOBJECTS) Makefile
$(LD) -o $@ -r $(KERNOBJECTS) $(LDFLAGS)
#ifdef FINAL
$(TARGETS) $(APP): spec $(OBJECTS)
$(MAKEROM) -s 9 -r $(TARGETS) spec
#ifndef NOMAKEMASK
makemask $(TARGETS)
#endif
#else
$(TARGETS) $(APP): spec $(OBJECTS)
$(MAKEROM) -r $(TARGETS) spec
#endif