mirror of
https://github.com/elliotnunn/supermario.git
synced 2025-02-21 17:29:00 +00:00
33 lines
753 B
Plaintext
33 lines
753 B
Plaintext
# MakeFile - Make instructions for assembly language examples.
|
|
#
|
|
# Copyright Apple Computer, Inc. 1986-1987
|
|
# All rights reserved.
|
|
#
|
|
# This makefile builds:
|
|
# The sample MPW Tool: Count
|
|
# The sample desk accessory: Memory
|
|
#
|
|
|
|
Count ƒƒ Count.r
|
|
Rez Count.r -o Count -append
|
|
Count ƒƒ Count.a.o FStubs.a.o
|
|
Link -w -c 'MPS ' -t MPST Count.a.o FStubs.a.o ∂
|
|
-sn INTENV=Main ∂
|
|
-sn %A5Init=Main ∂
|
|
"{Libraries}"Stubs.o ∂
|
|
"{Libraries}"Runtime.o ∂
|
|
"{Libraries}"ToolLibs.o ∂
|
|
"{Libraries}"Interface.o ∂
|
|
-o Count
|
|
Count.a.o ƒ Count.a
|
|
Asm Count.a
|
|
FStubs.a.o ƒ FStubs.a
|
|
Asm FStubs.a
|
|
|
|
|
|
Memory ƒ Memory.a.o
|
|
Link -da -t DFIL -c DMOV -rt DRVR=12 -sg Memory ∂
|
|
Memory.a.o -o Memory
|
|
Memory.a.o ƒ Memory.a
|
|
Asm Memory.a
|