
# Run test suite.
#
# $Id: Makefile 6561 2006-06-20 01:35:51Z andrewm $

PYTHON=python

all: unittests docs

unittests:
	PYTHONPATH=.. $(PYTHON) all.py

docs:
	cd ../doc && make PYTHON="$(PYTHON)" test

clean:
	rm -rf *.pyc
