Show More
@@ -1,112 +1,112 b'' | |||||
1 | # If you want to change PREFIX, do not just edit it below. The changed |
|
1 | # If you want to change PREFIX, do not just edit it below. The changed | |
2 | # value wont get passed on to recursive make calls. You should instead |
|
2 | # value wont get passed on to recursive make calls. You should instead | |
3 | # override the variable on the command like: |
|
3 | # override the variable on the command like: | |
4 | # |
|
4 | # | |
5 | # % make PREFIX=/opt/ install |
|
5 | # % make PREFIX=/opt/ install | |
6 |
|
6 | |||
7 | PREFIX=/usr/local |
|
7 | PREFIX=/usr/local | |
8 | export PREFIX |
|
8 | export PREFIX | |
9 | PYTHON=python |
|
9 | PYTHON=python | |
10 | PURE= |
|
10 | PURE= | |
11 | PYFILES:=$(shell find mercurial hgext doc -name '*.py') |
|
11 | PYFILES:=$(shell find mercurial hgext doc -name '*.py') | |
12 | DOCFILES=mercurial/help/*.txt |
|
12 | DOCFILES=mercurial/help/*.txt | |
13 |
|
13 | |||
14 | help: |
|
14 | help: | |
15 | @echo 'Commonly used make targets:' |
|
15 | @echo 'Commonly used make targets:' | |
16 | @echo ' all - build program and documentation' |
|
16 | @echo ' all - build program and documentation' | |
17 | @echo ' install - install program and man pages to PREFIX ($(PREFIX))' |
|
17 | @echo ' install - install program and man pages to PREFIX ($(PREFIX))' | |
18 | @echo ' install-home - install with setup.py install --home=HOME ($(HOME))' |
|
18 | @echo ' install-home - install with setup.py install --home=HOME ($(HOME))' | |
19 | @echo ' local - build for inplace usage' |
|
19 | @echo ' local - build for inplace usage' | |
20 | @echo ' tests - run all tests in the automatic test suite' |
|
20 | @echo ' tests - run all tests in the automatic test suite' | |
21 | @echo ' test-foo - run only specified tests (e.g. test-merge1)' |
|
21 | @echo ' test-foo - run only specified tests (e.g. test-merge1)' | |
22 | @echo ' dist - run all tests and create a source tarball in dist/' |
|
22 | @echo ' dist - run all tests and create a source tarball in dist/' | |
23 | @echo ' clean - remove files created by other targets' |
|
23 | @echo ' clean - remove files created by other targets' | |
24 | @echo ' (except installed files or dist source tarball)' |
|
24 | @echo ' (except installed files or dist source tarball)' | |
25 | @echo ' update-pot - update i18n/hg.pot' |
|
25 | @echo ' update-pot - update i18n/hg.pot' | |
26 | @echo |
|
26 | @echo | |
27 | @echo 'Example for a system-wide installation under /usr/local:' |
|
27 | @echo 'Example for a system-wide installation under /usr/local:' | |
28 | @echo ' make all && su -c "make install" && hg version' |
|
28 | @echo ' make all && su -c "make install" && hg version' | |
29 | @echo |
|
29 | @echo | |
30 | @echo 'Example for a local installation (usable in this directory):' |
|
30 | @echo 'Example for a local installation (usable in this directory):' | |
31 | @echo ' make local && ./hg version' |
|
31 | @echo ' make local && ./hg version' | |
32 |
|
32 | |||
33 | all: build doc |
|
33 | all: build doc | |
34 |
|
34 | |||
35 | local: |
|
35 | local: | |
36 | $(PYTHON) setup.py $(PURE) build_py -c -d . build_ext -i build_mo |
|
36 | $(PYTHON) setup.py $(PURE) build_py -c -d . build_ext -i build_mo | |
37 | $(PYTHON) hg version |
|
37 | $(PYTHON) hg version | |
38 |
|
38 | |||
39 | build: |
|
39 | build: | |
40 | $(PYTHON) setup.py $(PURE) build |
|
40 | $(PYTHON) setup.py $(PURE) build | |
41 |
|
41 | |||
42 | doc: |
|
42 | doc: | |
43 | $(MAKE) -C doc |
|
43 | $(MAKE) -C doc | |
44 |
|
44 | |||
45 | clean: |
|
45 | clean: | |
46 | -$(PYTHON) setup.py clean --all # ignore errors from this command |
|
46 | -$(PYTHON) setup.py clean --all # ignore errors from this command | |
47 | find . \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';' |
|
47 | find . \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';' | |
48 |
rm -f MANIFEST |
|
48 | rm -f MANIFEST tests/*.err | |
49 | rm -rf build mercurial/locale |
|
49 | rm -rf build mercurial/locale | |
50 | $(MAKE) -C doc clean |
|
50 | $(MAKE) -C doc clean | |
51 |
|
51 | |||
52 | install: install-bin install-doc |
|
52 | install: install-bin install-doc | |
53 |
|
53 | |||
54 | install-bin: build |
|
54 | install-bin: build | |
55 | $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force |
|
55 | $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force | |
56 |
|
56 | |||
57 | install-doc: doc |
|
57 | install-doc: doc | |
58 | cd doc && $(MAKE) $(MFLAGS) install |
|
58 | cd doc && $(MAKE) $(MFLAGS) install | |
59 |
|
59 | |||
60 | install-home: install-home-bin install-home-doc |
|
60 | install-home: install-home-bin install-home-doc | |
61 |
|
61 | |||
62 | install-home-bin: build |
|
62 | install-home-bin: build | |
63 | $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --force |
|
63 | $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --force | |
64 |
|
64 | |||
65 | install-home-doc: doc |
|
65 | install-home-doc: doc | |
66 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install |
|
66 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install | |
67 |
|
67 | |||
68 | MANIFEST-doc: |
|
68 | MANIFEST-doc: | |
69 | $(MAKE) -C doc MANIFEST |
|
69 | $(MAKE) -C doc MANIFEST | |
70 |
|
70 | |||
71 | MANIFEST: MANIFEST-doc |
|
71 | MANIFEST: MANIFEST-doc | |
72 | hg manifest > MANIFEST |
|
72 | hg manifest > MANIFEST | |
73 | echo mercurial/__version__.py >> MANIFEST |
|
73 | echo mercurial/__version__.py >> MANIFEST | |
74 | cat doc/MANIFEST >> MANIFEST |
|
74 | cat doc/MANIFEST >> MANIFEST | |
75 |
|
75 | |||
76 | dist: tests dist-notests |
|
76 | dist: tests dist-notests | |
77 |
|
77 | |||
78 | dist-notests: doc MANIFEST |
|
78 | dist-notests: doc MANIFEST | |
79 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist |
|
79 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist | |
80 |
|
80 | |||
81 | tests: |
|
81 | tests: | |
82 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) |
|
82 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) | |
83 |
|
83 | |||
84 | test-%: |
|
84 | test-%: | |
85 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ |
|
85 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ | |
86 |
|
86 | |||
87 | update-pot: i18n/hg.pot |
|
87 | update-pot: i18n/hg.pot | |
88 |
|
88 | |||
89 | i18n/hg.pot: $(PYFILES) $(DOCFILES) |
|
89 | i18n/hg.pot: $(PYFILES) $(DOCFILES) | |
90 | $(PYTHON) i18n/hggettext mercurial/commands.py \ |
|
90 | $(PYTHON) i18n/hggettext mercurial/commands.py \ | |
91 | hgext/*.py hgext/*/__init__.py mercurial/revset.py \ |
|
91 | hgext/*.py hgext/*/__init__.py mercurial/revset.py \ | |
92 | $(DOCFILES) > i18n/hg.pot |
|
92 | $(DOCFILES) > i18n/hg.pot | |
93 | # All strings marked for translation in Mercurial contain |
|
93 | # All strings marked for translation in Mercurial contain | |
94 | # ASCII characters only. But some files contain string |
|
94 | # ASCII characters only. But some files contain string | |
95 | # literals like this '\037\213'. xgettext thinks it has to |
|
95 | # literals like this '\037\213'. xgettext thinks it has to | |
96 | # parse them even though they are not marked for translation. |
|
96 | # parse them even though they are not marked for translation. | |
97 | # Extracting with an explicit encoding of ISO-8859-1 will make |
|
97 | # Extracting with an explicit encoding of ISO-8859-1 will make | |
98 | # xgettext "parse" and ignore them. |
|
98 | # xgettext "parse" and ignore them. | |
99 | echo $(PYFILES) | xargs \ |
|
99 | echo $(PYFILES) | xargs \ | |
100 | xgettext --package-name "Mercurial" \ |
|
100 | xgettext --package-name "Mercurial" \ | |
101 | --msgid-bugs-address "<mercurial-devel@selenic.com>" \ |
|
101 | --msgid-bugs-address "<mercurial-devel@selenic.com>" \ | |
102 | --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \ |
|
102 | --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \ | |
103 | --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \ |
|
103 | --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \ | |
104 | -d hg -p i18n -o hg.pot |
|
104 | -d hg -p i18n -o hg.pot | |
105 | $(PYTHON) i18n/posplit i18n/hg.pot |
|
105 | $(PYTHON) i18n/posplit i18n/hg.pot | |
106 |
|
106 | |||
107 | %.po: i18n/hg.pot |
|
107 | %.po: i18n/hg.pot | |
108 | msgmerge --no-location --update $@ $^ |
|
108 | msgmerge --no-location --update $@ $^ | |
109 |
|
109 | |||
110 | .PHONY: help all local build doc clean install install-bin install-doc \ |
|
110 | .PHONY: help all local build doc clean install install-bin install-doc \ | |
111 | install-home install-home-bin install-home-doc dist dist-notests tests \ |
|
111 | install-home install-home-bin install-home-doc dist dist-notests tests \ | |
112 | update-pot |
|
112 | update-pot |
General Comments 0
You need to be logged in to leave comments.
Login now