spectrum_remload/Makefile

29 lines
473 B
Makefile
Raw Normal View History

program.tap: header.block body.block
cat header.block body.block > program.tap
2024-11-10 17:12:49 +00:00
header.block: header ttttt
2024-11-11 17:35:34 +00:00
./ttttt header header
2024-11-10 17:12:49 +00:00
header: header.asm body.block
pasmo header.asm headerlong
2024-11-11 17:35:34 +00:00
dd if=headerlong of=header bs=17 count=1
rm -f headerlong
2024-11-10 17:12:49 +00:00
body.block: body ttttt
2024-11-11 17:35:34 +00:00
./ttttt body data
2024-11-10 17:12:49 +00:00
body: remload.asm code.asm
pasmo remload.asm body
2024-11-10 17:12:49 +00:00
ttttt: ttttt.c
cc ttttt.c -o ttttt
2024-11-10 17:12:49 +00:00
clean:
rm -f *.tap
rm -f *.block
rm -f body
rm -f header
rm -f ttttt
2024-11-10 17:12:49 +00:00
.PHONY: clean