Makefile
author Bryan O'Sullivan <bos@serpentine.com>
Tue, 23 Aug 2005 16:46:10 -0700
changeset 1027 cb31576ed3e4
parent 1008 85272e96b96a
child 1020 f1b052db3515
permissions -rw-r--r--
Emacs: fix up hg-log and hg-diff to operate more uniformly.

# 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