Makefile
77 lines
| 2.2 KiB
| text/x-makefile
|
MakefileLexer
wilde@trapperkeeper.sha-bang.de
|
r2233 | PREFIX=/usr/local | ||
export PREFIX | ||||
Thomas Arendsen Hein
|
r1008 | PYTHON=python | ||
Thomas Arendsen Hein
|
r2244 | help: | ||
@echo 'Commonly used make targets:' | ||||
@echo ' all - build program and documentation' | ||||
@echo ' install - install program and man pages to PREFIX ($(PREFIX))' | ||||
@echo ' install-home - install with setup.py install --home=HOME ($(HOME))' | ||||
@echo ' local - build C extensions for inplace usage' | ||||
@echo ' tests - run all tests in the automatic test suite' | ||||
@echo ' test-foo - run only specified tests (e.g. test-merge1)' | ||||
@echo ' dist - run all tests and create a source tarball in dist/' | ||||
@echo ' clean - remove files created by other targets' | ||||
@echo ' (except installed files or dist source tarball)' | ||||
@echo | ||||
@echo 'Example for a system-wide installation under /usr/local:' | ||||
@echo ' make all && su -c "make install" && hg version' | ||||
@echo | ||||
@echo 'Example for a local installation (usable in this directory):' | ||||
@echo ' make local && ./hg version' | ||||
all: build doc | ||||
Thomas Arendsen Hein
|
r2235 | |||
local: | ||||
mpm@selenic.com
|
r1020 | $(PYTHON) setup.py build_ext -i | ||
Thomas Arendsen Hein
|
r2235 | build: | ||
$(PYTHON) setup.py build | ||||
doc: | ||||
$(MAKE) -C doc | ||||
Thomas Arendsen Hein
|
r1008 | |||
clean: | ||||
-$(PYTHON) setup.py clean --all # ignore errors of this command | ||||
find . -name '*.py[co]' -exec rm -f '{}' ';' | ||||
Thomas Arendsen Hein
|
r2244 | rm -f MANIFEST mercurial/__version__.py mercurial/*.so tests/*.err | ||
levon@movementarian.org
|
r1423 | $(MAKE) -C doc clean | ||
Thomas Arendsen Hein
|
r1008 | |||
Sascha Wilde
|
r2527 | install: install-bin install-doc | ||
install-bin: build | ||||
Thomas Arendsen Hein
|
r2235 | $(PYTHON) setup.py install --prefix="$(PREFIX)" --force | ||
Sascha Wilde
|
r2527 | |||
install-doc: doc | ||||
Thomas Arendsen Hein
|
r2235 | cd doc && $(MAKE) $(MFLAGS) install | ||
Sascha Wilde
|
r2527 | install-home: install-home-bin install-home-doc | ||
install-home-bin: build | ||||
Thomas Arendsen Hein
|
r2235 | $(PYTHON) setup.py install --home="$(HOME)" --force | ||
Sascha Wilde
|
r2527 | |||
install-home-doc: doc | ||||
Thomas Arendsen Hein
|
r2235 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install | ||
Benoit Boissinot
|
r3872 | MANIFEST-doc: | ||
$(MAKE) -C doc MANIFEST | ||||
MANIFEST: MANIFEST-doc | ||||
hg manifest > MANIFEST | ||||
echo mercurial/__version__.py >> MANIFEST | ||||
cat doc/MANIFEST >> MANIFEST | ||||
Thomas Arendsen Hein
|
r2234 | dist: tests dist-notests | ||
Benoit Boissinot
|
r3872 | dist-notests: doc MANIFEST | ||
Matt Mackall
|
r3865 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist | ||
Thomas Arendsen Hein
|
r1008 | |||
tests: | ||||
Benoit Boissinot
|
r3969 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) | ||
Thomas Arendsen Hein
|
r1008 | |||
Benoit Boissinot
|
r1426 | test-%: | ||
Benoit Boissinot
|
r3969 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ | ||
Benoit Boissinot
|
r1426 | |||
Thomas Arendsen Hein
|
r1008 | |||
Sascha Wilde
|
r2527 | .PHONY: help all local build doc clean install install-bin install-doc \ | ||
install-home install-home-bin install-home-doc dist dist-notests tests | ||||