mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-01 05:31:52 +00:00
56bf637d3d
almost disastrous issues with alternate graphics
25 lines
430 B
Makefile
25 lines
430 B
Makefile
include ../../../../Makefile.inc
|
|
|
|
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
|
|
PNG_TO_HGR = ../../../../utils/hgr-utils/png2hgr
|
|
|
|
all: start_graphics.inc
|
|
|
|
start_graphics.inc: \
|
|
arrival_n.hgr.zx02
|
|
echo "arrival_n_zx02: .incbin \"arrival_n.hgr.zx02\"" > start_graphics.inc
|
|
|
|
####
|
|
|
|
%.hgr: %.png
|
|
$(PNG_TO_HGR) $< > $@
|
|
|
|
%.hgr.zx02: %.hgr
|
|
$(ZX02) -f $< $@
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.zx02 *.hgr start_graphics.inc
|
|
|