mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-02 12:29:26 +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
|
||
|
|