mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-17 14:12:58 +00:00
27 lines
557 B
Makefile
27 lines
557 B
Makefile
#include ../Makefile.inc
|
|
|
|
PNG2RLE = ../../../utils/gr-utils/png2rle
|
|
PNG2GR = ../../../utils/gr-utils/png2gr
|
|
LZSA = ~/research/lzsa/lzsa/lzsa
|
|
|
|
all: title_graphics.inc
|
|
|
|
####
|
|
|
|
title_graphics.inc: \
|
|
logo.lzsa monkey.lzsa title.lzsa
|
|
echo "logo_lzsa: .incbin \"logo.lzsa\"" > title_graphics.inc
|
|
echo "monkey_lzsa: .incbin \"monkey.lzsa\"" >> title_graphics.inc
|
|
echo "title_lzsa: .incbin \"title.lzsa\"" >> title_graphics.inc
|
|
|
|
%.gr: %.png
|
|
$(PNG2GR) $< $@
|
|
|
|
%.lzsa: %.gr
|
|
$(LZSA) -r -f2 $< $@
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.gr *.lzsa title_graphics.inc
|