status:
	svn status
	@echo "use 'make commit' or 'make release'"

commit: 
	svn commit

release: 
	svn commit
	svn update -q
	@echo "revision = \"Revision `svnversion` of `date`.\"" \
		| tee revision.py
	cp -p *.py ../vote

clean:
	rm -f *~ *.pyc *.tmp
