Skip to content
Makefile.in 323 B
Newer Older
Andreas Kloeckner's avatar
Andreas Kloeckner committed
.PHONY	: all install clean tags dist userdoc devdoc

all: tags
	${PYTHON_EXE} setup.py build

dist:
	${PYTHON_EXE} setup.py sdist

install: tags
	${PYTHON_EXE} setup.py install

clean:
	rm -Rf build
	rm -f tags

tags:
	ctags -R src || true

tests:
	echo "running tests"
	find ./test -type f -name "*.py" -exec python {} \;