boot3/Toolbox/ColorPicker/ColorPicker.make

101 lines
3.5 KiB
Plaintext
Raw Permalink Normal View History

#
# File: ColorPicker.make
#
# Contains: Makefile for the Color Picker Package.
#
# Written by: Kurt Clark, 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.
#
ColorPickerObjs = "{ObjDir}ColorPicker.a.o" <09>
"{ObjDir}ColorPicker.p.o" <09>
"{ObjDir}ColorConvert.p.o" <09>
"{ObjDir}ColorGlue.p.o" <09>
"{IfObjDir}Interface.o" <09>
"{PLibraries}PasLib.o"
"{RsrcDir}ColorPicker.rsrc" <09><> "{RIncludes}Types.r" <09>
"{ColorPickerDir}ColorPicker.r" <09>
"{ColorPickerDir}ColorPickerWedge.r"
Rez -a {StdROpts} -o "{Targ}" "{ColorPickerDir}ColorPicker.r" "{ColorPickerDir}ColorPickerWedge.r" || Exit 1
"{RsrcDir}ColorPicker.rsrc" <09><> {ColorPickerObjs}
Link {StdLOpts} {StdAlign} -o "{Targ}" {ColorPickerObjs} -rt PACK=12 || Exit 1
# Since these guys use the obsolete MemTypes, QuickDraw, OSIntf, ToolIntf, PackIntf
# they depend on a *huge* number of .p files.
MQOTPUnits = "{PInterfaces}MemTypes.p" <09>
"{PInterfaces}Types.p" <09>
"{PInterfaces}QuickDraw.p" <09>
"{PInterfaces}OSIntf.p" <09>
"{PInterfaces}Events.p" <09>
"{PInterfaces}OSUtils.p" <09>
"{PInterfaces}Files.p" <09>
"{PInterfaces}Devices.p" <09>
"{PInterfaces}DeskBus.p" <09>
"{PInterfaces}DiskInit.p" <09>
"{PInterfaces}Disks.p" <09>
"{PInterfaces}Errors.p" <09>
"{PInterfaces}Memory.p" <09>
"{PInterfaces}OSEvents.p" <09>
"{PInterfaces}Retrace.p" <09>
"{PInterfaces}SegLoad.p" <09>
"{PInterfaces}Serial.p" <09>
"{PInterfaces}ShutDown.p" <09>
"{PInterfaces}Slots.p" <09>
"{PInterfaces}Sound.p" <09>
"{PInterfaces}Start.p" <09>
"{PInterfaces}Timer.p" <09>
"{PInterfaces}ToolIntf.p" <09>
"{PInterfaces}Controls.p" <09>
"{PInterfaces}Desk.p" <09>
"{PInterfaces}Windows.p" <09>
"{PInterfaces}TextEdit.p" <09>
"{PInterfaces}Dialogs.p" <09>
"{PInterfaces}Fonts.p" <09>
"{PInterfaces}Lists.p" <09>
"{PInterfaces}Menus.p" <09>
"{PInterfaces}Resources.p" <09>
"{PInterfaces}Scrap.p" <09>
"{PInterfaces}ToolUtils.p" <09>
"{PInterfaces}PackIntf.p" <09>
"{PInterfaces}Packages.p"
ColorConvertUnits = {MQOTPUnits} <09>
"{PInterfaces}PaletteMgr.p" <09>
"{PInterfaces}FixMath.p" <09>
"{ColorPickerDir}ColorConvert.p"
ColorPickerUnits = {ColorConvertUnits} <09>
"{PInterfaces}QDOffScreen.p" <09>
"{PInterfaces}SysEqu.p" <09>
"{PInterfaces}GestaltEqu.p" <09>
"{ColorPickerDir}ColorPicker.p"
"{ObjDir}ColorConvert.p.o" <09> {ColorConvertUnits}
Pascal {StdPOpts} -o "{targ}" "{ColorPickerDir}ColorConvert.p"
"{ObjDir}ColorPicker.a.o" <09> "{AIncludes}Traps.a" <09>
"{ColorPickerDir}ColorPicker.a"
Asm {StdAOpts} -o "{Targ}" "{ColorPickerDir}ColorPicker.a"
"{ObjDir}ColorPicker.p.o" <09> {ColorPickerUnits}
Pascal {StdPOpts} -o "{targ}" "{ColorPickerDir}ColorPicker.p"
"{ObjDir}ColorGlue.p.o" <09> {ColorPickerUnits} <09>
"{ColorPickerDir}ColorGlue.p"
Pascal {StdPOpts} -o "{targ}" "{ColorPickerDir}ColorGlue.p"