mac-rom/Tools/ToolSource/Tools.make
Elliot Nunn 3a7bff43c0 Add RomLink, a bytecode interpreter
The "RomLink" bytecode language can be used to link a tree of binary chunks
into a flat file. The bytecode specifying each binary chunk lives in a
Resource Manager resource. The RomLink's only purpose is to flatten
DeclData.rsrc into a "Slot 0" (motherboard) DeclData, so it seems like
overkill. Nonetheless, DeclData.rsrc is very complicated (and so are its
antecedents, DeclData.r and the include file RomLink).

This implementation is incomplete. It is just enough to build the vestigial
DeclROM that TNT and later machines retain for Open Transport.
2017-12-26 09:52:52 +08:00

20 lines
678 B
Makefile

LibFiles-68K = ś
"{Libraries}Stubs.o" ś
"{CLibraries}StdCLib.o" ś
"{Libraries}MacRuntime.o" ś
"{Libraries}IntEnv.o" ś
"{Libraries}Interface.o" ś
"{ToolSrcDir}Vectorize.c.o" Ä "{ToolSrcDir}Vectorize.c" "{ToolSrcDir}MPWObjFuncs.c"
SC -o {Targ} "{ToolSrcDir}Vectorize.c"
"{ToolDir}Vectorize" Ä "{ToolSrcDir}Vectorize.c.o"
ILink -d -t 'MPST' -c 'MPS ' -o {Targ} {LibFiles-68k} "{ToolSrcDir}Vectorize.c.o"
"{ToolSrcDir}RomLink.c.o" Ä "{ToolSrcDir}RomLink.c"
SC -o {Targ} "{ToolSrcDir}RomLink.c"
"{RsrcDir}RomLink" Ä "{ToolSrcDir}RomLink.c.o"
ILink -d -t 'MPST' -c 'MPS ' -o {Targ} {LibFiles-68k} "{ToolSrcDir}RomLink.c.o"