VERSION=0.1

dist: clean
	tar cf - * | gzip > credit-${VERSION}.tar.gz

# We need the core so that rm does not barf.

clean:
	rm -f credit-*.tar.gz
	rm -f core `find . -name \*~ -print`
	rm -f core `find . -name \*.orig -print`
	rm -f core `find . -name \#\* -print`
