mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-29 20:49:19 +00:00
51 lines
1.6 KiB
Makefile
51 lines
1.6 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"
|
|
|