~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Packman
  • Date: 2012-02-01 13:24:42 UTC
  • mto: (6437.23.4 2.5)
  • mto: This revision was merged to the branch mainline in revision 6462.
  • Revision ID: martin.packman@canonical.com-20120201132442-ela7jc4mxv4b058o
Treat path for .bzr.log as unicode

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2012, 2016 Canonical Ltd
 
1
# Copyright (C) 2005-2011 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
148
148
NEWS_FILES = $(wildcard doc/en/release-notes/bzr-*.txt)
149
149
 
150
150
doc/en/user-reference/index.txt: $(MAN_DEPENDENCIES)
151
 
        LANGUAGE=C $(PYTHON) tools/generate_docs.py -o $@ rstx
 
151
        $(PYTHON) tools/generate_docs.py -o $@ rstx
152
152
 
153
153
doc/en/release-notes/index.txt: $(NEWS_FILES) tools/generate_release_notes.py
154
154
        $(PYTHON) tools/generate_release_notes.py $@ $(NEWS_FILES)
192
192
        cd doc/developers && make htmlhelp
193
193
 
194
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
 
 
203
195
### Documentation Website ###
204
196
 
205
197
# Where to build the website
435
427
update-pot: po/bzr.pot
436
428
 
437
429
TRANSLATABLE_PYFILES:=$(shell find bzrlib -name '*.py' \
438
 
                | grep -v 'bzrlib/tests/' \
439
 
                | grep -v 'bzrlib/doc' \
 
430
                | grep -v 'bzrlib/tests/' \
 
431
                | grep -v 'bzrlib/doc' \
440
432
                )
441
433
 
442
434
po/bzr.pot: $(PYFILES) $(DOCFILES)