all: nozomi.txt yuriko.txt

nozomi.txt: nozomi_template.png Makefile
	perl ./anytotxt.pl $< 114 42 > $@
	perl ./freq.pl $@

yuriko.txt: yuriko_template.png Makefile
	perl ./anytotxt.pl $< 128 50 > $@
	perl ./freq.pl $@

clean:
	-rm -f nozomi.txt yuriko.txt

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