dos33fsprogs/graphics/hgr_viewer/jiskey/Makefile

41 lines
572 B
Makefile
Raw Normal View History

2022-07-20 02:01:46 +00:00
include ../../../Makefile.inc
2021-05-20 19:30:55 +00:00
2022-07-20 02:01:46 +00:00
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
PNG_TO_HGR = ../../../utils/hgr-utils/png2hgr
2021-05-20 19:30:55 +00:00
2022-07-20 02:01:46 +00:00
all: grl.hgr.zx02 witch.hgr.zx02 mona.hgr.zx02 gw.hgr.zx02
2021-05-20 19:30:55 +00:00
2022-07-20 02:01:46 +00:00
####
2021-05-20 19:30:55 +00:00
2022-07-20 02:01:46 +00:00
witch.hgr.zx02: witch.hgr
$(ZX02) witch.hgr witch.hgr.zx02
2021-05-20 19:30:55 +00:00
###
2022-07-20 02:01:46 +00:00
grl.hgr.zx02: grl.hgr
$(ZX02) grl.hgr grl.hgr.zx02
###
2021-05-20 19:30:55 +00:00
mona.hgr: mona.png
2022-07-20 02:01:46 +00:00
$(PNG_TO_HGR) mona.png > mona.hgr
mona.hgr.zx02: mona.hgr
$(ZX02) mona.hgr mona.hgr.zx02
2021-05-20 19:30:55 +00:00
###
2022-07-20 02:01:46 +00:00
gw.hgr: gw.png
$(PNG_TO_HGR) gw.png > gw.hgr
gw.hgr.zx02: gw.hgr
$(ZX02) gw.hgr gw.hgr.zx02
###
2021-05-20 19:30:55 +00:00
2022-07-20 02:01:46 +00:00
clean:
rm -f *~ *.o *.lst
2021-05-20 19:30:55 +00:00