mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-06 14:30:37 +00:00
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
|
#
|
|||
|
# File: ControlMgr.make
|
|||
|
#
|
|||
|
# Contains: Makefile for the Control 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):
|
|||
|
#
|
|||
|
# <SM2> 12/2/92 kc Added " || Exit 1" to commands with a double dependency.
|
|||
|
|
|||
|
|
|||
|
ControlMgrObjs = "{ObjDir}ControlMgr.a.o" <09>
|
|||
|
"{ObjDir}ControlMgrExtensions.a.o"
|
|||
|
|
|||
|
|
|||
|
"{RsrcDir}ControlMgr.rsrc" <09><> "{ObjDir}ButtonCDEF.a.o"
|
|||
|
Link {StdLOpts} {StdAlign} -rt CDEF=0 -o "{Targ}" "{ObjDir}ButtonCDEF.a.o" || Exit 1
|
|||
|
|
|||
|
|
|||
|
"{RsrcDir}ControlMgr.rsrc" <09><> "{ObjDir}ScrollBarCDEF.a.o"
|
|||
|
Link {StdLOpts} {StdAlign} -rt CDEF=1 -o "{Targ}" "{ObjDir}ScrollBarCDEF.a.o" || Exit 1
|
|||
|
|
|||
|
|
|||
|
"{LibDir}ControlMgr.lib" <09> {ControlMgrObjs}
|
|||
|
Lib {StdLibOpts} -o "{Targ}" {ControlMgrObjs}
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}ControlMgr.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}LinkedPatchMacros.a" <09>
|
|||
|
"{IntAIncludes}ControlPriv.a" <09>
|
|||
|
"{ControlMgrDir}ControlMgr.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{ControlMgrDir}ControlMgr.a"
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}ControlMgrExtensions.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}LinkedPatchMacros.a" <09>
|
|||
|
"{IntAIncludes}ControlPriv.a" <09>
|
|||
|
"{ControlMgrDir}ControlMgrExtensions.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{ControlMgrDir}ControlMgrExtensions.a"
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}ScrollBarCDEF.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}ColorEqu.a" <09>
|
|||
|
"{ControlMgrDir}ScrollBarCDEF.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{ControlMgrDir}ScrollBarCDEF.a"
|
|||
|
|
|||
|
|
|||
|
"{ObjDir}ButtonCDEF.a.o" <09> "{ObjDir}StandardEqu.d" <09>
|
|||
|
"{IntAIncludes}ColorEqu.a" <09>
|
|||
|
"{ControlMgrDir}ButtonCDEF.a"
|
|||
|
Asm {StdAOpts} -o "{Targ}" "{ControlMgrDir}ButtonCDEF.a"
|