mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-18 21:06:31 +00:00
fc4d1e3b2e
this was a huge pain
23 lines
579 B
Makefile
23 lines
579 B
Makefile
include ../../../Makefile.inc
|
|
|
|
PNG2RLE = ../../../gr-utils/png2rle
|
|
PNG2LZ4 = ../../../gr-utils/png2lz4
|
|
|
|
all: ootw_c4_city.inc
|
|
|
|
#####
|
|
|
|
ootw_c4_city.inc: $(PNG2RLE) \
|
|
recharge.png hallway.png causeway1.png causeway2.png pit.png
|
|
$(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
|
|
$(PNG2RLE) asm causeway2.png causeway2_rle >> ootw_c4_city.inc
|
|
$(PNG2RLE) asm pit.png pit_rle >> ootw_c4_city.inc
|
|
|
|
#####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.lzz *.inc
|
|
|