Makefile.d
1.04 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
#!smake
#
# Makefile to build libleoipl_d.a
#
PRDEPTH=$(ROOT)/PR
include $(PRDEPTH)/PRdefs
LIBDEPTH = ../..
TARGETS=$(LIBDEPTH)/libleoipl_d/libleoipl_d.a
CFILES = \
iplleoc2ecc.c \
iplleocmdex.c \
iplleofunc.c \
iplleoint.c \
iplleomecha.c \
iplleoram.c \
iplleoread.c \
iplleotimer.c \
iplleoutil.c \
iplleord_diskid.c
COBJECTS = $(CFILES:.c=.o)
LCINCS = -I. -I../include -I$(ROOT)/usr/include/PR -I $(ROOT)/usr/include
LCOPTS = -non_shared -mips2 -fullwarn -G 0
LCDEFS = -DDEBUG
OPTIMIZER = -g
#ifdef RECOMPILE
exports install default: $(TARGETS)
include $(PRDEPTH)/PRrules
$(TARGETS): $(.TARGET)($(OBJECTS))
ar rc $(.TARGET) $(.OODATE)
rm -f $(.OODATE)
#else
.NOTPARALLEL:
ORGLIB = libleoipl_d.a
exports install default: $(TARGETS)
$(TARGETS): $(.TARGET)($(OBJECTS))
ar rc $(.TARGET) $(.OODATE)
rm -f $(.OODATE) /tmp/make.$(ORGLIB).tmp
$(OBJECTS):
cat $(ORGLIB).ZZ | zcat > /tmp/make.$(ORGLIB).tmp
ar xo /tmp/make.$(ORGLIB).tmp
# Since we can't use .Z file in the source tree,
# we use .ZZ instead.
#endif