all:

distclean:
	rm -f *~

tarball: index.html distclean
	tarbase="`basename \`pwd\``-`fstrftime .`" &&\
	if [ ! -d ../"$$tarbase" ]; then \
	  mkdir ../"$$tarbase" &&\
	  (tar cf - .) | (cd ../"$$tarbase" && tar xvf -) &&\
	  (cd .. && find "$$tarbase" -name '*.ttf' -exec rm {} \;) &&\
	  (cd .. && tar cvzf "$$tarbase".tar.gz "$$tarbase") &&\
	  rm -rf ../"$$tarbase";\
	fi
