blob: 55b643ad8892fab1330d43e8a62c8db08275a8cf (
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
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
|
# File: dlgPPC.make
# Target: dlgPPC
# Sources: automata.c
# dlg_a.c
# dlg_p.c
# err.c
# main.c
# output.c
# relabel.c
# support.c
# ::support:set:set.c
# Created: Sunday, May 17, 1998 11:34:20 PM
# Author: Kenji Tanaka
MAKEFILE = dlgPPC.make
�MondoBuild� = {MAKEFILE} # Make blank to avoid rebuilds when makefile is modified
Includes = �
-i "::h:" �
-i "::support:set:"
Sym�PPC =
ObjDir�PPC = ":Obj:"
PPCCOptions = {Includes} {Sym�PPC} -w off -d MPW -d __STDC__=1 -d USER_ZZSYN
Objects�PPC = �
"{ObjDir�PPC}automata.c.x" �
"{ObjDir�PPC}dlg_a.c.x" �
"{ObjDir�PPC}dlg_p.c.x" �
"{ObjDir�PPC}err.c.x" �
"{ObjDir�PPC}main.c.x" �
"{ObjDir�PPC}output.c.x" �
"{ObjDir�PPC}relabel.c.x" �
"{ObjDir�PPC}support.c.x" �
"{ObjDir�PPC}set.c.x"
dlgPPC �� {�MondoBuild�} {Objects�PPC}
PPCLink �
-o {Targ} {Sym�PPC} �
{Objects�PPC} �
-t 'MPST' �
-c 'MPS ' �
"{SharedLibraries}InterfaceLib" �
"{SharedLibraries}StdCLib" �
"{SharedLibraries}MathLib" �
"{PPCLibraries}StdCRuntime.o" �
"{PPCLibraries}PPCCRuntime.o" �
"{PPCLibraries}PPCToolLibs.o"
"{ObjDir�PPC}automata.c.x" � {�MondoBuild�} automata.c
{PPCC} automata.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}dlg_a.c.x" � {�MondoBuild�} dlg_a.c
{PPCC} dlg_a.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}dlg_p.c.x" � {�MondoBuild�} dlg_p.c
{PPCC} dlg_p.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}err.c.x" � {�MondoBuild�} err.c
{PPCC} err.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}main.c.x" � {�MondoBuild�} main.c
{PPCC} main.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}output.c.x" � {�MondoBuild�} output.c
{PPCC} output.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}relabel.c.x" � {�MondoBuild�} relabel.c
{PPCC} relabel.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}support.c.x" � {�MondoBuild�} support.c
{PPCC} support.c -o {Targ} {PPCCOptions}
"{ObjDir�PPC}set.c.x" � {�MondoBuild�} "::support:set:set.c"
{PPCC} "::support:set:set.c" -o {Targ} {PPCCOptions}
dlgPPC �� dlg.r
Rez dlg.r -o dlgPPC -a
Install � dlgPPC
Duplicate -y dlgPPC "{MPW}"Tools:dlg
|