##// END OF EJS Templates
Makefile: change "make local" to build a fully working local version.
Markus F.X.J. Oberhumer -
r4706:f0aa759b default
parent child Browse files
Show More
@@ -7,7 +7,7 b' help:'
7 @echo ' all - build program and documentation'
7 @echo ' all - build program and documentation'
8 @echo ' install - install program and man pages to PREFIX ($(PREFIX))'
8 @echo ' install - install program and man pages to PREFIX ($(PREFIX))'
9 @echo ' install-home - install with setup.py install --home=HOME ($(HOME))'
9 @echo ' install-home - install with setup.py install --home=HOME ($(HOME))'
10 @echo ' local - build C extensions for inplace usage'
10 @echo ' local - build for inplace usage'
11 @echo ' tests - run all tests in the automatic test suite'
11 @echo ' tests - run all tests in the automatic test suite'
12 @echo ' test-foo - run only specified tests (e.g. test-merge1)'
12 @echo ' test-foo - run only specified tests (e.g. test-merge1)'
13 @echo ' dist - run all tests and create a source tarball in dist/'
13 @echo ' dist - run all tests and create a source tarball in dist/'
@@ -24,6 +24,8 b' all: build doc'
24
24
25 local:
25 local:
26 $(PYTHON) setup.py build_ext -i
26 $(PYTHON) setup.py build_ext -i
27 $(PYTHON) setup.py build_py -c -d .
28 $(PYTHON) hg version
27
29
28 build:
30 build:
29 $(PYTHON) setup.py build
31 $(PYTHON) setup.py build
General Comments 0
You need to be logged in to leave comments. Login now