mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-11-19 03:06:49 +00:00
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
#
|
|
# File: NotificationMgr.make
|
|
#
|
|
# Contains: Makefile for the Notification Manager.
|
|
#
|
|
# Written by: Kurt Clark, Chas Spillar, and Tim Nichols
|
|
#
|
|
# Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
#
|
|
# Change History (most recent first):
|
|
#
|
|
|
|
|
|
NotificationMgrObjs = "{ObjDir}NotificationMgr.c.o" ¶
|
|
"{ObjDir}NotificationMgr.a.o" ¶
|
|
"{ObjDir}SetProcessorLevel.a.o"
|
|
|
|
|
|
# "{LibDir}NotificationMgr.lib" Ä {NotificationMgrObjs}
|
|
# Lib {StdLibOpts} -o "{Targ}" {NotificationMgrObjs}
|
|
|
|
|
|
|
|
"{ObjDir}NotificationMgr.c.o" Ä "{cincludes}Notification.h" ¶
|
|
"{NotificationDir}kernel.h" ¶
|
|
"{NotificationDir}task.h" ¶
|
|
"{CIncludes}Types.h" ¶
|
|
"{CIncludes}Devices.h" ¶
|
|
"{CIncludes}Memory.h" ¶
|
|
"{CIncludes}OSUtils.h" ¶
|
|
"{CIncludes}Events.h" ¶
|
|
"{CIncludes}Resources.h" ¶
|
|
"{CIncludes}Controls.h" ¶
|
|
"{CIncludes}Dialogs.h" ¶
|
|
"{CIncludes}Menus.h" ¶
|
|
"{CIncludes}Sound.h" ¶
|
|
"{NotificationDir}NotificationMgr.c"
|
|
C {StdCOpts} -o "{Targ}" "{NotificationDir}NotificationMgr.c"
|
|
|
|
|
|
"{ObjDir}NotificationMgr.a.o" Ä "{ObjDir}StandardEqu.d" ¶
|
|
"{IntAIncludes}UniversalEqu.a" ¶
|
|
"{AIncludes}HardwareEqu.a" ¶
|
|
"{NotificationDir}NotificationMgr.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{NotificationDir}NotificationMgr.a"
|
|
|
|
|
|
"{ObjDir}SetProcessorLevel.a.o" Ä "{NotificationDir}SetProcessorLevel.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{NotificationDir}SetProcessorLevel.a"
|
|
|