mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-29 00:31:52 +00:00
28 lines
746 B
Makefile
28 lines
746 B
Makefile
include ../../../Makefile.inc
|
|
|
|
ZX02 = ~/research/6502_compression/zx02.git/build/zx02 -f
|
|
PNG_TO_HGR = ../../../utils/hgr-utils/png2hgr
|
|
LINKER_SCRIPTS = ../../../linker_scripts
|
|
DOS33 = ../../../utils/dos33fs-utils/dos33
|
|
EMPTY_DISK = ../../../empty_disk/empty.dsk
|
|
TOKENIZE = ../../../utils/asoft_basic-utils/tokenize_asoft
|
|
PNG2GR = ../../../utils/gr-utils/png2gr
|
|
PNG2SPRITES = ../../../utils/gr-utils/png2sprites
|
|
HGR_SPRITE = ../../../utils/hgr-utils/hgr_make_sprite
|
|
|
|
all: strongbad_sample.hgr.zx02
|
|
|
|
####
|
|
|
|
strongbad_sample.hgr.zx02: strongbad_sample.hgr
|
|
$(ZX02) strongbad_sample.hgr strongbad_sample.hgr.zx02
|
|
|
|
strongbad_sample.hgr: strongbad_sample.png
|
|
$(PNG_TO_HGR) strongbad_sample.png > strongbad_sample.hgr
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst
|
|
|