mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
25 lines
395 B
Makefile
25 lines
395 B
Makefile
include ../../../Makefile.inc
|
|
|
|
PNG2RLE = ../../../gr-utils/png2rle
|
|
|
|
|
|
all: intro_tunnel1.inc intro_tunnel2.inc
|
|
|
|
#####
|
|
|
|
intro_tunnel1.inc: $(PNG2RLE) \
|
|
intro_tunnel1.png
|
|
$(PNG2RLE) asm intro_tunnel1.png tunnel1_rle > intro_tunnel1.inc
|
|
|
|
#####
|
|
|
|
intro_tunnel2.inc: $(PNG2RLE) \
|
|
intro_tunnel2.png
|
|
$(PNG2RLE) asm intro_tunnel2.png tunnel2_rle > intro_tunnel2.inc
|
|
|
|
#####
|
|
|
|
clean:
|
|
rm -f *~ *.inc
|
|
|