mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-02-15 12:30:56 +00:00
76 lines
2.6 KiB
Makefile
76 lines
2.6 KiB
Makefile
#
|
|
# File: DialogMgr.make
|
|
#
|
|
# Contains: Makefile for the Dialog Manager.
|
|
#
|
|
# Written by: Kurt Clark, Chas Spillar, and Tim Nichols
|
|
#
|
|
# Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
#
|
|
# Change History (most recent first):
|
|
#
|
|
|
|
|
|
DialogMgrObjects = "{ObjDir}DialogMgr.a.o" ¶
|
|
"{ObjDir}DialogMgrExtensions.a.o" ¶
|
|
"{ObjDir}DialogMgrExtensions.c.o" ¶
|
|
"{ObjDir}ModalDialogMenuExtensions.a.o" ¶
|
|
"{ObjDir}ModalDialogMenuExtensions.c.o" ¶
|
|
"{ObjDir}DialogDispatch.a.o"
|
|
|
|
|
|
# "{LibDir}DialogMgr.lib" Ä {DialogMgrObjects}
|
|
# Lib {StdLibOpts} -o "{Targ}" {DialogMgrObjects}
|
|
|
|
|
|
"{ObjDir}DialogMgr.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}ColorEqu.a" ¶
|
|
"{IntAIncludes}DialogsPriv.a" ¶
|
|
"{DialogDir}DialogMgr.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{DialogDir}DialogMgr.a"
|
|
|
|
|
|
"{ObjDir}DialogMgrExtensions.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{AIncludes}Processes.a" ¶
|
|
"{DialogDir}DialogMgrExtensions.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{DialogDir}DialogMgrExtensions.a"
|
|
|
|
|
|
"{ObjDir}DialogMgrExtensions.c.o" Ä "{CIncludes}Memory.h" ¶
|
|
"{CIncludes}ToolUtils.h" ¶
|
|
"{CIncludes}Script.h" ¶
|
|
"{IntCIncludes}ScriptPriv.h" ¶
|
|
"{IntCIncludes}DialogsPriv.h" ¶
|
|
"{DialogDir}DialogMgrExtensions.c"
|
|
C {StdCOpts} -o "{Targ}" "{DialogDir}DialogMgrExtensions.c"
|
|
|
|
|
|
"{ObjDir}ModalDialogMenuExtensions.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}BalloonsPriv.a" ¶
|
|
"{IntAIncludes}ScriptPriv.a" ¶
|
|
"{IntAIncludes}MenuMgrPriv.a" ¶
|
|
"{DialogDir}ModalDialogMenuExtensions.a"
|
|
Asm {StdAOpts} -i "{HelpMgrDir}" -o "{Targ}" "{DialogDir}ModalDialogMenuExtensions.a"
|
|
|
|
|
|
"{ObjDir}ModalDialogMenuExtensions.c.o" Ä "{CIncludes}Memory.h" ¶
|
|
"{CIncludes}OSUtils.h" ¶
|
|
"{CIncludes}TextUtils.h" ¶
|
|
"{CIncludes}Menus.h" ¶
|
|
"{IntCIncludes}MenuMgrPriv.h" ¶
|
|
"{CIncludes}Windows.h" ¶
|
|
"{CIncludes}Processes.h" ¶
|
|
"{CIncludes}Dialogs.h" ¶
|
|
"{IntCIncludes}DialogsPriv.h" ¶
|
|
"{CIncludes}Events.h" ¶
|
|
"{DialogDir}ModalDialogMenuExtensions.c"
|
|
C {StdCOpts} -o "{Targ}" "{DialogDir}ModalDialogMenuExtensions.c"
|
|
|
|
|
|
"{ObjDir}DialogDispatch.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}InternalMacros.a" ¶
|
|
"{IntAIncludes}LinkedPatchMacros.a" ¶
|
|
"{IntAIncludes}DialogsPriv.a" ¶
|
|
"{DialogDir}DialogDispatch.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{DialogDir}DialogDispatch.a"
|