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