dos33fsprogs/demos/second/part01_intropan/graphics/Makefile
2023-10-05 00:21:58 -04:00

41 lines
651 B
Makefile

include ../../../../Makefile.inc
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
PNG_TO_HGR = ../../../../utils/hgr-utils/png2hgr
PNG2GR = ../../../../utils/gr-utils/png2gr
all: igl.hgr.zx02 igr.hgr.zx02 fc_sr_logo.hgr.zx02
####
fc_sr_logo.hgr.zx02: fc_sr_logo.hgr
$(ZX02) fc_sr_logo.hgr fc_sr_logo.hgr.zx02
fc_sr_logo.hgr: fc_sr_logo.png
$(PNG_TO_HGR) fc_sr_logo.png > fc_sr_logo.hgr
####
igl.hgr.zx02: igl.hgr
$(ZX02) igl.hgr igl.hgr.zx02
igl.hgr: igl.png
$(PNG_TO_HGR) igl.png > igl.hgr
####
igr.hgr.zx02: igr.hgr
$(ZX02) igr.hgr igr.hgr.zx02
igr.hgr: igr.png
$(PNG_TO_HGR) igr.png > igr.hgr
####
####
clean:
rm -f *~