~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jonathan Riddell
  • Date: 2011-05-16 11:27:37 UTC
  • mto: This revision was merged to the branch mainline in revision 5869.
  • Revision ID: jriddell@canonical.com-20110516112737-gep642p24rtzp3jt
userĀ guideĀ licence

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
42
42
        set -e
43
43
        # Generate a stream for PQM to watch.
44
44
        -$(RM) -f selftest.log
45
 
        echo `date` ": selftest starts" 1>&2
46
 
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest -Oselftest.timeout=120 \
47
 
          --subunit $(tests) | tee selftest.log
48
 
        echo `date` ": selftest ends" 1>&2
 
45
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest --subunit $(tests) | tee selftest.log
49
46
        # An empty log file should catch errors in the $(PYTHON)
50
47
        # command above (the '|' swallow any errors since 'make'
51
48
        # sees the 'tee' exit code for the whole line
78
75
docfiles = bzr bzrlib
79
76
api-docs:
80
77
        mkdir -p api/html
81
 
        pydoctor --make-html --docformat='restructuredtext' --html-output=api/html $(docfiles)
 
78
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --html -o api/html --docformat 'restructuredtext en' $(docfiles)
 
79
check-api-docs:
 
80
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --check --docformat 'restructuredtext en' $(docfiles)
82
81
 
83
82
# build tags for emacs and vim
84
83
TAGS:
148
147
NEWS_FILES = $(wildcard doc/en/release-notes/bzr-*.txt)
149
148
 
150
149
doc/en/user-reference/index.txt: $(MAN_DEPENDENCIES)
151
 
        LANGUAGE=C $(PYTHON) tools/generate_docs.py -o $@ rstx
 
150
        $(PYTHON) tools/generate_docs.py -o $@ rstx
152
151
 
153
152
doc/en/release-notes/index.txt: $(NEWS_FILES) tools/generate_release_notes.py
154
153
        $(PYTHON) tools/generate_release_notes.py $@ $(NEWS_FILES)
192
191
        cd doc/developers && make htmlhelp
193
192
 
194
193
 
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
194
### Documentation Website ###
204
195
 
205
196
# Where to build the website
429
420
        $(PYTHON) tools/win32/ostools.py remove dist
430
421
 
431
422
 
432
 
# i18n targets
433
 
 
434
 
.PHONY: update-pot po/bzr.pot
435
 
update-pot: po/bzr.pot
436
 
 
437
 
TRANSLATABLE_PYFILES:=$(shell find bzrlib -name '*.py' \
438
 
                | grep -v 'bzrlib/tests/' \
439
 
                | grep -v 'bzrlib/doc' \
440
 
                )
441
 
 
442
 
po/bzr.pot: $(PYFILES) $(DOCFILES)
443
 
        $(PYTHON) ./bzr export-pot --include-duplicates > po/bzr.pot
444
 
        echo $(TRANSLATABLE_PYFILES) | xargs \
445
 
          xgettext --package-name "bzr" \
446
 
          --msgid-bugs-address "<bazaar@canonical.com>" \
447
 
          --copyright-holder "Canonical" \
448
 
          --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
449
 
          -d bzr -p po -o bzr.pot
450
 
 
451
 
 
452
423
### Packaging Targets ###
453
424
 
454
425
.PHONY: dist check-dist-tarball