2019-03-31 00:03:04 +00:00
|
|
|
include ../../../Makefile.inc
|
|
|
|
|
|
|
|
PNG2RLE = ../../../gr-utils/png2rle
|
|
|
|
PNG2LZ4 = ../../../gr-utils/png2lz4
|
|
|
|
|
|
|
|
all: ootw_beast_end.inc
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
|
|
|
ootw_beast_end.inc: $(PNG2RLE) \
|
2019-08-17 21:54:40 +00:00
|
|
|
beast_bg.png \
|
2019-03-31 00:03:04 +00:00
|
|
|
beast_slash07.png beast_slash08.png beast_slash09.png \
|
|
|
|
beast_slash10.png beast_slash11.png beast_slash12.png \
|
|
|
|
beast_slash13.png beast_slash14.png beast_slash15.png \
|
|
|
|
beast_slash16.png beast_slash17.png beast_slash18.png \
|
2019-08-17 21:54:40 +00:00
|
|
|
beast_slash19.png beast_slash20.png
|
|
|
|
$(PNG2RLE) asm beast_bg.png beast_bg_rle > ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash07.png beast_slash07_rle >> ootw_beast_end.inc
|
2019-03-31 00:03:04 +00:00
|
|
|
$(PNG2RLE) asm beast_slash08.png beast_slash08_rle >> ootw_beast_end.inc
|
2019-08-17 21:54:40 +00:00
|
|
|
$(PNG2RLE) asm beast_slash09.png beast_slash09_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash10.png beast_slash10_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash11.png beast_slash11_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash12.png beast_slash12_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash13.png beast_slash13_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash14.png beast_slash14_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash15.png beast_slash15_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash16.png beast_slash16_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash17.png beast_slash17_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash18.png beast_slash18_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash19.png beast_slash19_rle >> ootw_beast_end.inc
|
|
|
|
$(PNG2RLE) asm beast_slash20.png beast_slash20_rle >> ootw_beast_end.inc
|
2019-03-31 00:03:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
|
|
|
clean:
|
2019-03-31 02:24:19 +00:00
|
|
|
rm -f *~ *.o *.lst *.lzz ootw_beast_end.inc
|
2019-03-31 00:03:04 +00:00
|
|
|
|