# Makefile - Don Yang (uguu.org)
#
# Build template files from GIF images, requires sh, perl, and netpbm.
#
# 11/14/01


all: dejiko.txt puchiko.txt gema.txt

dejiko.txt: dejiko.gif Makefile
	./gen_template $< $@ 100 50

puchiko.txt: puchiko.gif Makefile
	./gen_template $< $@ 100 50

gema.txt: gema.gif Makefile
	./gen_template $< $@ 100 60

clean:
	-rm -f dejiko.txt puchiko.txt gema.txt

backup:
	-rm -f backup.tar.gz
	tar cf backup.tar *.gif gen_template xpmtotxt Makefile
	gzip -9 backup.tar
