Makefile.ptn64
1.15 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
#!smake
# --------------------------------------------------------------------
# Copyright (C) 1997 Nintendo.
#
# $RCSfile: Makefile.ptn64,v $
# $Revision: 1.1.1.1 $
# $Date: 2002/05/02 03:27:32 $
# --------------------------------------------------------------------
#
# Makefile for game <> host I/O test application
#
#
include $(ROOT)/usr/include/make/PRdefs
OPTIMIZER = -g
TARGETS = game host
HFILES = hostio.h
BOOTFILES = game.c
BOOTOBJECTS = $(BOOTFILES:.c=.o)
BOOTSEGMENT = boot.o
OBJECTS = $(BOOTSEGMENT)
LCDEFS = -DPTN64
LCINCS = -I$(ROOT)/usr/include -I$(ROOT)/usr/include/PR -I.
LCOPTS = -fullwarn -wlint,-f -woff 813,819,826,827,852 -non_shared -G 0
LDFLAGS = $(MKDEPOPT) -nostdlib -L$(ROOT)/usr/lib -lultra_d
LDIRT = rom
host: host.c
$(CC) -o host -DPTN64 \
-fullwarn -wlint,-f -woff 813,819,826,827,852 \
-nostdinc -I$(ROOT)/usr/include $(MKDEPOPT) \
host.c -nostdlib -L -L$(ROOT)/usr/lib -lultrahost
default: $(TARGETS)
include $(COMMONRULES)
$(BOOTSEGMENT): $(BOOTOBJECTS)
$(LD) -o $(BOOTSEGMENT) -r $(BOOTOBJECTS) $(LDFLAGS)
game: spec $(OBJECTS) $(MAKEROM)
$(MAKEROM) -r rom spec