~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jelmer Vernooij
  • Date: 2016-04-03 16:32:31 UTC
  • mto: This revision was merged to the branch mainline in revision 6617.
  • Revision ID: jelmer@jelmer.uk-20160403163231-h72bo0uyek2gikw0
Don't put French text in doc/en/user-reference when LANGUAGE=fr_CH.UTF_8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005-2012, 2016 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
43
43
        # Generate a stream for PQM to watch.
44
44
        -$(RM) -f selftest.log
45
45
        echo `date` ": selftest starts" 1>&2
46
 
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest --subunit $(tests) | tee selftest.log
 
46
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest -Oselftest.timeout=120 \
 
47
          --subunit $(tests) | tee selftest.log
47
48
        echo `date` ": selftest ends" 1>&2
48
49
        # An empty log file should catch errors in the $(PYTHON)
49
50
        # command above (the '|' swallow any errors since 'make'
147
148
NEWS_FILES = $(wildcard doc/en/release-notes/bzr-*.txt)
148
149
 
149
150
doc/en/user-reference/index.txt: $(MAN_DEPENDENCIES)
150
 
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
151
        LANGUAGE=C $(PYTHON) tools/generate_docs.py -o $@ rstx
151
152
 
152
153
doc/en/release-notes/index.txt: $(NEWS_FILES) tools/generate_release_notes.py
153
154
        $(PYTHON) tools/generate_release_notes.py $@ $(NEWS_FILES)
191
192
        cd doc/developers && make htmlhelp
192
193
 
193
194
 
 
195
# Build the texinfo files using Sphinx.
 
196
texinfo-sphinx: $(SPHINX_DEPENDENCIES)
 
197
        cd doc/en && make texinfo
 
198
        cd doc/es && make texinfo
 
199
        cd doc/ru && make texinfo
 
200
        cd doc/ja && make texinfo
 
201
        cd doc/developers && make texinfo
 
202
 
194
203
### Documentation Website ###
195
204
 
196
205
# Where to build the website
426
435
update-pot: po/bzr.pot
427
436
 
428
437
TRANSLATABLE_PYFILES:=$(shell find bzrlib -name '*.py' \
429
 
                | grep -v 'bzrlib/tests/' \
430
 
                | grep -v 'bzrlib/doc' \
 
438
                | grep -v 'bzrlib/tests/' \
 
439
                | grep -v 'bzrlib/doc' \
431
440
                )
432
441
 
433
442
po/bzr.pot: $(PYFILES) $(DOCFILES)
434
 
        $(PYTHON) ./bzr export-pot > po/bzr.pot
 
443
        $(PYTHON) ./bzr export-pot --include-duplicates > po/bzr.pot
435
444
        echo $(TRANSLATABLE_PYFILES) | xargs \
436
445
          xgettext --package-name "bzr" \
437
446
          --msgid-bugs-address "<bazaar@canonical.com>" \