spectrum_remload/Makefile
Neil McPhail 1c7ab48330 Simplify build by adapting checksum program
This now prepends length bytes as well as adding checksum
2024-11-11 10:17:34 +00:00

29 lines
461 B
Makefile

program.tap: header.block body.block
cat header.block body.block > program.tap
header.block: header ttttt
./ttttt header
header: header.asm body.block
pasmo header.asm headerlong
dd if=headerlong of=header bs=18 count=1
rm -f headerlong
body.block: body ttttt
./ttttt body
body: remload.asm code.asm
pasmo remload.asm body
ttttt: ttttt.c
cc ttttt.c -o ttttt
clean:
rm -f *.tap
rm -f *.block
rm -f body
rm -f header
rm -f ttttt
.PHONY: clean