# Makefile for Pluvo
# http://inamidst.com/pluvo/Makefile

all: force setup.py
	python setup.py build

clean: force
	-rm -rf build

dist: force setup.py
	find -name '*.pyc' -delete
	cp -p Makefile Makefile.src
	python setup.py sdist --formats=gztar
	mv dist/*.tar.gz .
	rmdir dist
	./homepage

force: ;

install: force setup.py
	python setup.py install

test: force test/run
	test/run

# [EOF]
