Makefile
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 22 Aug 2005 08:46:43 +0200
changeset 1008 85272e96b96a
child 1020 f1b052db3515
permissions -rw-r--r--
Add Makefile for generating release tarballs. - test suite is run - documentation is generated and included

# This Makefile is only used by developers.
PYTHON=python

all:
	@echo "Read the file README for install instructions."

clean:
	-$(PYTHON) setup.py clean --all # ignore errors of this command
	find . -name '*.py[co]' -exec rm -f '{}' ';'
	make -C doc clean

dist:	tests doc
	TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest

tests:
	cd tests && ./run-tests

doc:
	make -C doc


.PHONY: all clean dist tests doc