mirror of
https://github.com/ksherlock/itty-bitty-vtty.git
synced 2024-11-21 05:31:06 +00:00
25 lines
459 B
Makefile
25 lines
459 B
Makefile
|
|
|
|
scc.po: scc.bin
|
|
dd bs=1024 count=800 if=/dev/zero of=scc.po
|
|
dd bs=512 if=scc.bin of=scc.po conv=notrunc
|
|
|
|
modem.po: modem.bin
|
|
dd bs=1024 count=800 if=/dev/zero of=modem.po
|
|
dd bs=512 if=modem.bin of=modem.po conv=notrunc
|
|
|
|
vt52.po: vt52.bin
|
|
dd bs=1024 count=800 if=/dev/zero of=vt52.po
|
|
dd bs=512 if=vt52.bin of=vt52.po conv=notrunc
|
|
|
|
vt52.bin: vt52.S boot.S link.S
|
|
iix qlink link.S
|
|
|
|
|
|
scc.bin: scc.s
|
|
iix qasm scc.s
|
|
|
|
modem.bin: modem.s
|
|
iix qasm modem.s
|
|
|