mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-24 17:32:59 +00:00
27 lines
649 B
Makefile
27 lines
649 B
Makefile
#
|
|
# File: IconUtils.make
|
|
#
|
|
# Contains: Makefile for the Icon Utilities.
|
|
#
|
|
# Written by: Kurt Clark, Chas Spillar, and Tim Nichols
|
|
#
|
|
# Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
#
|
|
# Change History (most recent first):
|
|
#
|
|
|
|
|
|
IconUtilsObjs = "{ObjDir}IconUtils.a.o" ∂
|
|
"{ObjDir}IconUtils.c.o"
|
|
|
|
"{LibDir}IconUtils.lib" ƒ {IconUtilsObjs}
|
|
Lib {StdLibOpts} -o "{Targ}" {IconUtilsObjs}
|
|
|
|
|
|
"{ObjDir}IconUtils.a.o" ƒ "{IconUtilsDir}IconUtils.a"
|
|
Asm {StdAOpts} -o "{Targ}" "{IconUtilsDir}IconUtils.a"
|
|
|
|
|
|
|
|
"{ObjDir}IconUtils.c.o" ƒ "{IconUtilsDir}IconUtils.c"
|
|
C {StdCOpts} -o "{Targ}" "{IconUtilsDir}IconUtils.c" |