second: setup some graphics

This commit is contained in:
Vince Weaver 2023-10-05 00:21:58 -04:00
parent 6e36d12be4
commit 30439c19fc
5 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
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 *~

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB