~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Aaron Bentley
  • Date: 2006-11-10 01:47:51 UTC
  • mto: This revision was merged to the branch mainline in revision 2127.
  • Revision ID: aaron.bentley@utoronto.ca-20061110014751-e6da9027939cd42a
Add 'pretty-docs' target to makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
# Produce HTML docs to upload on Canonical server
36
36
HTMLDIR := html_docs
 
37
PRETTYDIR := pretty_docs
37
38
 
38
39
html-docs: docs
39
40
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css $(HTMLDIR)
41
42
 
42
43
# translate txt docs to html
43
44
doc_dir := doc 
44
 
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir)))
45
 
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) doc/bzr_man.htm
46
 
 
47
 
%.htm: %.txt
48
 
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css $*.txt $*.htm
 
45
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir))) doc/bzr_man.txt
 
46
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) 
 
47
 
 
48
pretty-docs: pretty_files
 
49
 
 
50
pretty_docs:
 
51
        python -c "import os; os.mkdir('$(PRETTYDIR)')"
 
52
 
 
53
pretty_files: $(patsubst doc/%.txt, $(PRETTYDIR)/%.htm, $(txt_files))
 
54
 
 
55
doc/%.htm: doc/%.txt
 
56
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css doc/$*.txt doc/$*.htm
 
57
 
 
58
$(PRETTYDIR)/%.htm: pretty_docs doc/%.txt
 
59
        python tools/rst2prettyhtml.py doc/bazaar-vcs.org.kid doc/$*.txt \
 
60
        $(PRETTYDIR)/$*.htm
49
61
 
50
62
doc/bzr_man.txt: bzrlib/builtins.py \
51
63
                 bzrlib/bundle/commands.py \
63
75
 
64
76
# clean produced docs
65
77
clean-docs:
66
 
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) $(HTMLDIR)
 
78
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) \
 
79
        $(HTMLDIR) $(PRETTYDIR)
67
80
 
68
81
 
69
82
# make bzr.exe for win32 with py2exe