public
Description: mercurial to git bridge, pushed to directly from the hg-git plugin in Hg
Homepage:
Clone URL: git://github.com/schacon/hg-git.git
hg-git / Makefile
100644 17 lines (12 sloc) 0.457 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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