~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Alexander Belchenko
  • Date: 2006-08-17 12:14:57 UTC
  • mto: (1711.2.128 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1939.
  • Revision ID: bialix@ukr.net-20060817121457-44e8499df346c8bb
New target to produce html docs to upload on server

- 'make htmldocs' translate docs to html 
  and copy documentation to folder html_docs
  (can be tuned by variable HTMLDIR inside Makefile)
- 'make clean-docs' remove generated html files
- provide consistency in make targets
- added dependencies for bzr_man.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        ctags-exuberant -e $(tag_files)
32
32
 
33
33
 
34
 
# make bzr.exe for win32 with py2exe
35
 
exe:
36
 
        @echo *** Make bzr.exe
37
 
        python setup.py py2exe > py2exe.log
38
 
        python tools/win32/ostools.py copytodir tools/win32/start_bzr.bat win32_bzr.exe
39
 
        python tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_bzr.exe
 
34
# Produce HTML docs to upload on Canonical server
 
35
HTMLDIR := html_docs
 
36
 
 
37
htmldocs: docs
 
38
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css $(HTMLDIR)
 
39
 
40
40
 
41
41
# translate txt docs to html
42
42
doc_dir := doc 
44
44
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) doc/bzr_man.htm
45
45
 
46
46
%.htm: %.txt
47
 
        rst2html.py --link-stylesheet --stylesheet=default.css $*.txt $*.htm
 
47
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css $*.txt $*.htm
48
48
 
49
 
doc/bzr_man.txt:
 
49
doc/bzr_man.txt: bzrlib/builtins.py \
 
50
                 bzrlib/bundle/commands.py \
 
51
                 bzrlib/conflicts.py \
 
52
                 bzrlib/sign_my_commits.py \
 
53
                 generate_docs.py \
 
54
                 tools/doc_generate/__init__.py \
 
55
                 tools/doc_generate/autodoc_rstx.py
50
56
        python generate_docs.py -o doc/bzr_man.txt rstx
51
57
 
52
58
docs: $(htm_files)
53
59
 
54
 
copy_docs: docs
 
60
copy-docs: docs
55
61
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css NEWS README  win32_bzr.exe/doc
56
62
 
 
63
# clean produced docs
 
64
clean-docs:
 
65
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) $(HTMLDIR)
 
66
 
 
67
 
 
68
# make bzr.exe for win32 with py2exe
 
69
exe:
 
70
        @echo *** Make bzr.exe
 
71
        python setup.py py2exe > py2exe.log
 
72
        python tools/win32/ostools.py copytodir tools/win32/start_bzr.bat win32_bzr.exe
 
73
        python tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_bzr.exe
 
74
 
57
75
# win32 installer for bzr.exe
58
76
installer: exe copy_docs
59
77
        @echo *** Make windows installer
67
85
 
68
86
 
69
87
# clean on win32 all installer-related files and directories
70
 
clean_win32:
 
88
clean-win32:
71
89
        python tools/win32/ostools.py remove build
72
90
        python tools/win32/ostools.py remove win32_bzr.exe
73
91
        python tools/win32/ostools.py remove py2exe.log