mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-03 18:29:53 +00:00
15 lines
229 B
Makefile
15 lines
229 B
Makefile
|
include ../../../Makefile.inc
|
||
|
|
||
|
PNG2RLE = ../../../utils/gr-utils/png2rle
|
||
|
PNG2GR = ../../../utils/gr-utils/png2gr
|
||
|
LZSA = ~/research/lzsa/lzsa/lzsa
|
||
|
|
||
|
all: KATC.lzsa
|
||
|
|
||
|
%.lzsa: %.BIN
|
||
|
$(LZSA) -r -f2 $< $@
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ KATC.LZSA
|
||
|
|