CGI_PATH=/p/python-2.5.1/bin/python

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

commit: 
	svn commit

update:
	svn update

release: update commit 
	rm -f ../vote/*.pyc
	cp -p *.py ../vote
	sed "1s_/usr/bin/env python_${CGI_PATH}_" vote.py > ../vote/vote.py

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