view Makefile @ 269:77d6c9eb02fb 0.2.0

setup: bump to 0.2.0
author Augie Fackler <durin42@gmail.com>
date Sat, 26 Dec 2009 12:42:25 -0600
parents b9c6871c939e
children 428c819f3135
line wrap: on
line source

PYTHON=python

help:
	@echo 'Commonly used make targets:'
	@echo '  tests        - run all tests in the automatic test suite'

all: tests

tests:
	cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)

test-%:
	cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS) $@
.PHONY: help all local build doc clean install install-bin install-doc \
	install-home install-home-bin install-home-doc dist dist-notests tests \
	update-pot