15 lines
216 B
Text
15 lines
216 B
Text
|
|
# Makefile to run on MSX
|
||
|
|
|
||
|
|
hello.rel: hello.mac
|
||
|
|
echo Making hello.rel
|
||
|
|
m80 =hello/Z
|
||
|
|
|
||
|
|
hello.hex: hello.rel
|
||
|
|
echo Making hello.hex
|
||
|
|
l80 hello,hello/N/X/Y/E
|
||
|
|
|
||
|
|
hello.com: hello.hex
|
||
|
|
echo Making hello.com
|
||
|
|
hextocom hello
|
||
|
|
|