31 lines
771 B
Makefile
Raw Normal View History

include ../../../../Makefile.inc
2024-05-16 09:40:45 -04:00
ZX02 = ~/research/6502_compression/zx02.git/build/zx02 -f
PNG_TO_HGR = ../../../../utils/hgr-utils/png2hgr
2024-05-16 13:48:17 -04:00
all: magsteps_graphics.inc
magsteps_graphics.inc: \
magsteps2_n.hgr.zx02 magsteps2_s.hgr.zx02 \
magsteps3_n.hgr.zx02 magsteps3_s.hgr.zx02
echo "magsteps2_n_zx02: .incbin \"magsteps2_n.hgr.zx02\"" > magsteps_graphics.inc
echo "magsteps2_s_zx02: .incbin \"magsteps2_s.hgr.zx02\"" >> magsteps_graphics.inc
echo "magsteps3_n_zx02: .incbin \"magsteps3_n.hgr.zx02\"" >> magsteps_graphics.inc
echo "magsteps3_s_zx02: .incbin \"magsteps3_s.hgr.zx02\"" >> magsteps_graphics.inc
2024-05-16 09:40:45 -04:00
####
%.hgr: %.png
$(PNG_TO_HGR) $< > $@
%.hgr.zx02: %.hgr
$(ZX02) -f $< $@
####
clean:
2024-05-16 13:48:17 -04:00
rm -f *~ *.o *.lst *.zx02 *.hgr magsteps_graphics.inc
2024-05-16 09:40:45 -04:00