# Makefile - Don Yang (uguu.org)
#
# 01/11/02


all: template.txt

template.txt: inuyasha.gif
	./conv

clean:
	-rm -f template.txt

backup:
	-rm -f backup.tar.gz
	tar cf backup.tar inuyasha.* conv xpmtotxt Makefile
	gzip -9 backup.tar
