mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-30 07:30:04 +00:00
18 lines
283 B
Makefile
18 lines
283 B
Makefile
include ../../../Makefile.inc
|
|
|
|
PNG2RLE = ../../../gr-utils/png2rle
|
|
PNG2LZ4 = ../../../gr-utils/png2lz4
|
|
|
|
all: ootw_pool.inc
|
|
|
|
#####
|
|
|
|
ootw_pool.inc: $(PNG2RLE) another_pool.png
|
|
$(PNG2RLE) asm another_pool.png pool_rle > ootw_pool.inc
|
|
|
|
#####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.lzz *.inc
|
|
|