2019-07-31 18:13:15 +00:00
|
|
|
include ../../../Makefile.inc
|
|
|
|
|
|
|
|
PNG2RLE = ../../../gr-utils/png2rle
|
|
|
|
PNG2LZ4 = ../../../gr-utils/png2lz4
|
|
|
|
|
|
|
|
all: ootw_c4_city.inc
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
|
|
|
ootw_c4_city.inc: $(PNG2RLE) \
|
2019-07-31 20:01:44 +00:00
|
|
|
recharge.png hallway.png causeway1.png causeway2.png
|
2019-07-31 18:13:15 +00:00
|
|
|
$(PNG2RLE) asm recharge.png recharge_rle > ootw_c4_city.inc
|
|
|
|
$(PNG2RLE) asm hallway.png hallway_rle >> ootw_c4_city.inc
|
|
|
|
$(PNG2RLE) asm causeway1.png causeway1_rle >> ootw_c4_city.inc
|
2019-07-31 20:01:44 +00:00
|
|
|
$(PNG2RLE) asm causeway2.png causeway2_rle >> ootw_c4_city.inc
|
2019-07-31 18:13:15 +00:00
|
|
|
|
|
|
|
#####
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *~ *.o *.lst *.lzz *.inc
|
|
|
|
|