mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-03-13 00:31:04 +00:00
32 lines
813 B
Plaintext
32 lines
813 B
Plaintext
|
#
|
|||
|
# File: TimeMgr.make
|
|||
|
#
|
|||
|
# Contains: Makefile for the Time Manager.
|
|||
|
#
|
|||
|
# Written by: Kurt Clark, Chas Spillar, and Tim Nichols
|
|||
|
#
|
|||
|
# Copyright: <09> 1992 by Apple Computer, Inc., all rights reserved.
|
|||
|
#
|
|||
|
# Change History (most recent first):
|
|||
|
#
|
|||
|
|
|||
|
TimeMgrObjs = "{ObjDir}TimeMgr.a.o" <09>
|
|||
|
"{ObjDir}TimeMgrPatch.a.o"
|
|||
|
|
|||
|
|
|||
|
"{LibDir}TimeMgr.lib" <09> {TimeMgrObjs}
|
|||
|
Lib {StdLibOpts} -o "{Targ}" {TimeMgrObjs}
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}TimeMgr.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}HardwarePrivateEqu.a" <09>
|
|||
|
"{TimeMgrDir}TimeMgr.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{TimeMgrDir}TimeMgr.a"
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}TimeMgrPatch.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}HardwarePrivateEqu.a" <09>
|
|||
|
"{TimeMgrDir}TimeMgrPatch.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{TimeMgrDir}TimeMgrPatch.a"
|
|||
|
|