view Makefile @ 107:5fe53db61aa4 0.4

tests: fix tests that use integer bookmarks Integer bookmarks are now not allowed (since they alias with revision numbers), so a hglib test was failing.
author Durham Goode <durham@fb.com>
date Fri, 08 Feb 2013 03:51:42 -0800
parents 5484cfdc2d59
children b8edcb693518
line wrap: on
line source

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

all: help

.PHONY: tests

MANIFEST.in:
	hg manifest | sed -e 's/^/include /' > MANIFEST.in

dist: MANIFEST.in
	TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist

tests:
	$(PYTHON) test.py --with-doctest