mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-03-06 18:30:12 +00:00
26 lines
359 B
Makefile
26 lines
359 B
Makefile
include ../../../../../Makefile.inc
|
|
|
|
PNG2GR = ../../../../../utils/gr-utils/png2gr
|
|
LZSA = ~/research/lzsa/lzsa/lzsa
|
|
|
|
all: ootw_c3_vent.inc
|
|
|
|
#####
|
|
|
|
ootw_c3_vent.inc: vent.lzsa
|
|
echo "vent_lzsa: .incbin \"vent.lzsa\"" > ootw_c3_vent.inc
|
|
|
|
#####
|
|
|
|
%.gr: %.png
|
|
$(PNG2GR) $< $@
|
|
|
|
%.lzsa: %.gr
|
|
$(LZSA) -r -f2 $< $@
|
|
|
|
#####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst *.lzsa *.gr
|
|
|