~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Patch Queue Manager
  • Date: 2011-09-22 14:12:18 UTC
  • mfrom: (6155.3.1 jam)
  • Revision ID: pqm@pqm.ubuntu.com-20110922141218-86s4uu6nqvourw4f
(jameinel) Cleanup comments bzrlib/smart/__init__.py (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 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
28
28
PLUGIN_TARGET=plugin-release
29
29
PYTHON_BUILDFLAGS=
30
30
 
31
 
.PHONY: all clean extensions pyflakes api-docs check-nodocs check
 
31
.PHONY: all clean realclean extensions pyflakes api-docs check-nodocs check
32
32
 
33
33
all: extensions
34
34
 
42
42
        set -e
43
43
        # Generate a stream for PQM to watch.
44
44
        -$(RM) -f selftest.log
45
 
        $(PYTHON) -Werror -O ./bzr selftest --subunit $(tests) | tee selftest.log
 
45
        echo `date` ": selftest starts" 1>&2
 
46
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest --subunit $(tests) | tee selftest.log
 
47
        echo `date` ": selftest ends" 1>&2
46
48
        # An empty log file should catch errors in the $(PYTHON)
47
49
        # command above (the '|' swallow any errors since 'make'
48
50
        # sees the 'tee' exit code for the whole line
66
68
        $(PYTHON) setup.py clean
67
69
        -find . -name "*.pyc" -o -name "*.pyo" -o -name "*.so" | xargs rm -f
68
70
 
 
71
realclean: clean
 
72
        # Remove files which are autogenerated but included by the tarball.
 
73
        rm -f bzrlib/*_pyx.c
 
74
        rm -f bzrlib/_simple_set_pyx.h bzrlib/_simple_set_pyx_api.h
 
75
 
69
76
# Build API documentation
70
77
docfiles = bzr bzrlib
71
78
api-docs:
72
79
        mkdir -p api/html
73
 
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --html -o api/html --docformat 'restructuredtext en' $(docfiles)
74
 
check-api-docs:
75
 
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --check --docformat 'restructuredtext en' $(docfiles)
 
80
        pydoctor --make-html --docformat='restructuredtext' --html-output=api/html $(docfiles)
76
81
 
77
82
# build tags for emacs and vim
78
83
TAGS:
304
309
        $(rst2html) --stylesheet=default.css $< $@
305
310
 
306
311
%.html: %.txt
307
 
        $(rst2html) --stylesheet=../../default.css $< $@
 
312
        $(rst2html) --stylesheet=../../default.css $< "$@"
308
313
 
309
 
doc/en/release-notes/NEWS.txt: NEWS
310
 
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
 
314
doc/en/release-notes/NEWS.txt: $(NEWS_FILES) tools/generate_release_notes.py
 
315
        $(PYTHON) tools/generate_release_notes.py "$@" $(NEWS_FILES)
311
316
 
312
317
upgrade_guide_dependencies =  $(wildcard $(addsuffix /*.txt, doc/en/upgrade-guide)) 
313
318
 
415
420
        $(PYTHON) tools/win32/ostools.py remove dist
416
421
 
417
422
 
 
423
# i18n targets
 
424
 
 
425
.PHONY: update-pot po/bzr.pot
 
426
update-pot: po/bzr.pot
 
427
 
 
428
TRANSLATABLE_PYFILES:=$(shell find bzrlib -name '*.py' \
 
429
                | grep -v 'bzrlib/tests/' \
 
430
                | grep -v 'bzrlib/doc' \
 
431
                )
 
432
 
 
433
po/bzr.pot: $(PYFILES) $(DOCFILES)
 
434
        $(PYTHON) ./bzr export-pot > po/bzr.pot
 
435
        echo $(TRANSLATABLE_PYFILES) | xargs \
 
436
          xgettext --package-name "bzr" \
 
437
          --msgid-bugs-address "<bazaar@canonical.com>" \
 
438
          --copyright-holder "Canonical" \
 
439
          --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
 
440
          -d bzr -p po -o bzr.pot
 
441
 
 
442
 
418
443
### Packaging Targets ###
419
444
 
420
445
.PHONY: dist check-dist-tarball