view Makefile @ 48:b9c6871c939e

Fix single test running.
author Augie Fackler <durin42@gmail.com>
date Tue, 28 Apr 2009 12:13:16 -0700
parents 50a0d52ef979
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