# Makefile - Don Yang (uguu.org)
#
# 06/17/12

width = 151
height = `perl -e 'print int($(width) * 0.4)'`

all: hazuki.txt

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

clean:
	-rm -f akari.txt

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