mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-17 14:12:58 +00:00
b1238af49d
this will probably upset people
22 lines
322 B
Makefile
22 lines
322 B
Makefile
#include ../Makefile.inc
|
|
|
|
PNG2RLE = ../../gr-utils/png2rle
|
|
PNG2GR = ../../gr-utils/png2gr
|
|
LZSA = ~/research/lzsa/lzsa/lzsa
|
|
|
|
all: music.inc
|
|
|
|
####
|
|
|
|
music.inc: \
|
|
theme.lzsa
|
|
echo "theme_lzsa: .incbin \"theme.lzsa\"" > music.inc
|
|
|
|
%.lzsa: %.krg
|
|
$(LZSA) -r -f2 $< $@
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.gr *.lzsa music.inc
|