zx81-rom

ZX81 rom source mirror
git clone http://frotz.net/git/zx81-rom.git
Log | Files | Refs

Makefile (361B)


      1 
      2 all: golden.zx81.hex zx81plus.rom zx81plus.chk zx81v2.rom zx81v2.chk
      3 
      4 V := @
      5 
      6 %.chk: %.hex
      7 	$(V)diff $< golden.zx81.hex
      8 	$(V)echo SUCCESS - $< is identical to original rom
      9 	$(V)touch $@
     10 
     11 %.rom: %.asm
     12 	$(V)z80asm --list=$@.lst --label=$@.xref --output=$@ $<
     13 
     14 %.hex: %.rom
     15 	$(V)xxd -g1 $< > $@
     16 
     17 clean:
     18 	$(V)rm -f *.hex *.lst *.xref *.chk zx81plus.rom zx81v2.rom