2016-10-15 03:03:00 +00:00
|
|
|
|
|
|
|
LD=mpw linkIIgs
|
|
|
|
ASM=mpw asmIIgs
|
|
|
|
#ASMFLAGS=-d DEBUG_S16 -d DebugSymbols
|
2016-10-17 00:22:51 +00:00
|
|
|
ASMFLAGS=-case on -l
|
2016-10-15 03:03:00 +00:00
|
|
|
LDFLAGS=
|
|
|
|
|
|
|
|
|
|
|
|
all : host.driver host.fst
|
|
|
|
|
|
|
|
host.fst : host.fst.o
|
|
|
|
$(LD) -t \$$BD -at \$$0000 $< -o $@
|
|
|
|
|
|
|
|
# aux type (-at)
|
|
|
|
# $8000 = inactive
|
|
|
|
# $0100 = gs/os driver
|
|
|
|
# $00xx = number of devices supported (should match dib)
|
|
|
|
host.driver : host.driver.o
|
|
|
|
$(LD) -t \$$BB -at \$$0101 $< -o $@
|
|
|
|
|
|
|
|
host.driver.o : host.driver.aii gsos.equ
|
|
|
|
|
2016-10-15 23:27:47 +00:00
|
|
|
host.fst.o : host.fst.aii gsos.equ fst.equ records.equ fst.macros
|
2016-10-15 03:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%.o : %.aii
|
2016-10-17 00:22:51 +00:00
|
|
|
$(ASM) $(ASMFLAGS) $< -o $@
|