mirror of
https://github.com/antoinevignau/source.git
synced 2025-01-04 04:31:04 +00:00
1 line
1.5 KiB
Makefile
1 line
1.5 KiB
Makefile
|
### Dependencies for building both the imagewriter and imagewriter.lq drivers.
install <EFBFBD> both
choose -u 'Scott Lindsey' ':StyleWare, Inc.:' -pw azures
cp -y image<67> Royalton:Appleworks_GS:Bandit:Utilities: <20> Dev:Null
all <EFBFBD> imagewriter.cl
beep
mac2gs -y imagewriter.cl :imagewriter.cl
both <EFBFBD> imagewriter.cl imagewriter.clq
beep
mac2gs -y imagewriter.cl :imagewriter.cl
beep
mac2gs -y imagewriter.clq :imagewriter.clq
macros <09> :src:iw.sym
### Dependancies for IW
imagewriter.cl <09> :obj:iw.o <09>
:obj:dialogdata.o
LINKIIGS :obj:iw.o :obj:dialogdata.o -o imagewriter.cl -t $70BB0001 <09>
-s > list
imagewriter.clq <09> :obj:lq.o <09>
:obj:dialogdata.o
LINKIIGS :obj:lq.o :obj:dialogdata.o -o imagewriter.clq -t $70BB0001
### Dependancies for iw.o
### Setting the variable lq to 0 will build the regular Imagewriter driver
:obj:iw.o <09> :src:iw.asm <09>
:src:hld.asm <09>
:src:lld.asm
ASMIIGS -d lq=0 :src:iw.asm -o :obj:iw.o
### Dependencies for lq.o
### Setting the variable lq to 1 will build the Imagewriter LQ driver
:obj:lq.o <09> :src:iw.asm <09>
:src:hld.asm <09>
:src:lld.asm
ASMIIGS -d lq=1 :src:iw.asm -o :obj:lq.o
### Dependancies for dialogdata.o
:obj:dialogdata.o <09> :src:dialogdata.asm
ASMIIGS :src:dialogdata.asm -o :obj:dialogdata.o
### Dependancies for stdtext.o
:obj:stdtext.o <09> :src:stdtext.asm
ASMIIGS :src:stdtext.asm -o :obj:stdtext.o
### Dependancies for iw.sym
:src:iw.sym <09> :src:iw.asm :src:all.macros
ASMIIGS -c -d DUMPIT :src:iw.asm
|