mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2026-04-19 02:20:45 +00:00
5b0f0cc134
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
32 lines
813 B
Makefile
32 lines
813 B
Makefile
#
|
|
# File: TimeMgr.make
|
|
#
|
|
# Contains: Makefile for the Time Manager.
|
|
#
|
|
# Written by: Kurt Clark, Chas Spillar, and Tim Nichols
|
|
#
|
|
# Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
#
|
|
# Change History (most recent first):
|
|
#
|
|
|
|
TimeMgrObjs = "{ObjDir}TimeMgr.a.o" ¶
|
|
"{ObjDir}TimeMgrPatch.a.o"
|
|
|
|
|
|
"{LibDir}TimeMgr.lib" Ä {TimeMgrObjs}
|
|
Lib {StdLibOpts} -o "{Targ}" {TimeMgrObjs}
|
|
|
|
|
|
"{ObjDir}TimeMgr.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}HardwarePrivateEqu.a" ¶
|
|
"{TimeMgrDir}TimeMgr.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{TimeMgrDir}TimeMgr.a"
|
|
|
|
|
|
"{ObjDir}TimeMgrPatch.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}HardwarePrivateEqu.a" ¶
|
|
"{TimeMgrDir}TimeMgrPatch.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{TimeMgrDir}TimeMgrPatch.a"
|
|
|