# Makefile - Don Yang (uguu.org)
#
# 12/26/08

aspect = $(shell perl aspect.pl lily.png)
width = 70
height = $(shell perl -e 'print int($(width) * 0.5 * $(aspect))')

all: lily.txt

lily.txt: lily.png Makefile
	perl anytotxt.pl $< $(width) $(height) > $@
	perl freq.pl $@

clean:
	-rm -f lily.txt

backup:
	-rm -f backup.tar.gz
	tar cf backup.tar *.pl *.cdr Makefile
	gzip -9 backup.tar
