mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-11-19 03:06:49 +00:00
4325cdcc78
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
27 lines
643 B
Makefile
27 lines
643 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" |