1 # File: dlgPPC.make 2 # Target: dlgPPC 3 # Sources: automata.c 4 # dlg_a.c 5 # dlg_p.c 6 # err.c 7 # main.c 8 # output.c 9 # relabel.c 10 # support.c 11 # ::support:set:set.c 12 # Created: Sunday, May 17, 1998 11:34:20 PM 13 # Author: Kenji Tanaka 14 15 16 MAKEFILE = dlgPPC.make 17 MondoBuild = {MAKEFILE} # Make blank to avoid rebuilds when makefile is modified 18 Includes = 19 -i "::h:" 20 -i "::support:set:" 21 SymPPC = 22 ObjDirPPC = ":Obj:" 23 24 PPCCOptions = {Includes} {SymPPC} -w off -d MPW -d __STDC__=1 -d USER_ZZSYN 25 26 ObjectsPPC = 27 "{ObjDirPPC}automata.c.x" 28 "{ObjDirPPC}dlg_a.c.x" 29 "{ObjDirPPC}dlg_p.c.x" 30 "{ObjDirPPC}err.c.x" 31 "{ObjDirPPC}main.c.x" 32 "{ObjDirPPC}output.c.x" 33 "{ObjDirPPC}relabel.c.x" 34 "{ObjDirPPC}support.c.x" 35 "{ObjDirPPC}set.c.x" 36 37 38 dlgPPC {MondoBuild} {ObjectsPPC} 39 PPCLink 40 -o {Targ} {SymPPC} 41 {ObjectsPPC} 42 -t 'MPST' 43 -c 'MPS ' 44 "{SharedLibraries}InterfaceLib" 45 "{SharedLibraries}StdCLib" 46 "{SharedLibraries}MathLib" 47 "{PPCLibraries}StdCRuntime.o" 48 "{PPCLibraries}PPCCRuntime.o" 49 "{PPCLibraries}PPCToolLibs.o" 50 51 52 "{ObjDirPPC}automata.c.x" {MondoBuild} automata.c 53 {PPCC} automata.c -o {Targ} {PPCCOptions} 54 55 "{ObjDirPPC}dlg_a.c.x" {MondoBuild} dlg_a.c 56 {PPCC} dlg_a.c -o {Targ} {PPCCOptions} 57 58 "{ObjDirPPC}dlg_p.c.x" {MondoBuild} dlg_p.c 59 {PPCC} dlg_p.c -o {Targ} {PPCCOptions} 60 61 "{ObjDirPPC}err.c.x" {MondoBuild} err.c 62 {PPCC} err.c -o {Targ} {PPCCOptions} 63 64 "{ObjDirPPC}main.c.x" {MondoBuild} main.c 65 {PPCC} main.c -o {Targ} {PPCCOptions} 66 67 "{ObjDirPPC}output.c.x" {MondoBuild} output.c 68 {PPCC} output.c -o {Targ} {PPCCOptions} 69 70 "{ObjDirPPC}relabel.c.x" {MondoBuild} relabel.c 71 {PPCC} relabel.c -o {Targ} {PPCCOptions} 72 73 "{ObjDirPPC}support.c.x" {MondoBuild} support.c 74 {PPCC} support.c -o {Targ} {PPCCOptions} 75 76 "{ObjDirPPC}set.c.x" {MondoBuild} "::support:set:set.c" 77 {PPCC} "::support:set:set.c" -o {Targ} {PPCCOptions} 78 79 80 dlgPPC dlg.r 81 Rez dlg.r -o dlgPPC -a 82 83 Install dlgPPC 84 Duplicate -y dlgPPC "{MPW}"Tools:dlg 85