hgbook

annotate en/Makefile @ 187:b60e2de6dbc3

Add chapter on branch management.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon Apr 16 14:19:31 2007 -0700 (2007-04-16)
parents 5fc4a45c069f
children 959357d01607
rev   line source
bos@18 1 # This makefile requires GNU make.
bos@18 2
bos@2 3 sources := \
bos@2 4 00book.tex \
bos@2 5 99book.bib \
bos@2 6 99defs.tex \
bos@34 7 build_id.tex \
bos@187 8 branch.tex \
bos@132 9 cmdref.tex \
bos@159 10 collab.tex \
bos@59 11 concepts.tex \
bos@42 12 daily.tex \
bos@133 13 filenames.tex \
bos@177 14 hg_id.tex \
bos@34 15 hook.tex \
bos@16 16 intro.tex \
bos@16 17 mq.tex \
bos@104 18 mq-collab.tex \
bos@104 19 mq-ref.tex \
bos@76 20 preface.tex \
bos@85 21 srcinstall.tex \
bos@84 22 template.tex \
bos@95 23 tour-basic.tex \
bos@121 24 tour-merge.tex \
bos@121 25 undo.tex
bos@0 26
bos@11 27 image-sources := \
bos@179 28 feature-branches.dot \
bos@108 29 filelog.svg \
bos@103 30 kdiff3.png \
bos@109 31 metadata.svg \
bos@96 32 mq-stack.svg \
bos@149 33 note.png \
bos@112 34 revlog.svg \
bos@110 35 snapshot.svg \
bos@99 36 tour-history.svg \
bos@103 37 tour-merge-conflict.svg \
bos@103 38 tour-merge-merge.svg \
bos@100 39 tour-merge-pull.svg \
bos@113 40 tour-merge-sep-repos.svg \
bos@124 41 undo-manual.dot \
bos@124 42 undo-manual-merge.dot \
bos@124 43 undo-non-tip.dot \
bos@124 44 undo-simple.dot \
bos@113 45 wdir.svg \
bos@115 46 wdir-after-commit.svg \
bos@115 47 wdir-branch.svg \
bos@115 48 wdir-merge.svg \
bos@115 49 wdir-pre-branch.svg
bos@103 50
bos@124 51 image-dot := $(filter %.dot,$(image-sources))
bos@103 52 image-svg := $(filter %.svg,$(image-sources))
bos@124 53 image-png := $(filter %.png,$(image-sources))
bos@11 54
bos@4 55 example-sources := \
bos@124 56 backout \
bos@131 57 bisect \
bos@179 58 branching \
bos@133 59 cmdref \
bos@117 60 daily.copy \
bos@86 61 daily.files \
bos@118 62 daily.rename \
bos@122 63 daily.revert \
bos@133 64 filenames \
bos@86 65 hook.msglen \
bos@86 66 hook.simple \
bos@86 67 hook.ws \
bos@156 68 issue29 \
bos@104 69 mq.guards \
bos@86 70 mq.qinit-help \
bos@86 71 mq.dodiff \
bos@86 72 mq.id \
bos@86 73 mq.tarball \
bos@86 74 mq.tools \
bos@86 75 mq.tutorial \
bos@156 76 rename.divergent \
bos@121 77 rollback \
bos@86 78 template.simple \
bos@87 79 template.svnstyle \
bos@103 80 tour \
bos@103 81 tour-merge-conflict
bos@4 82
bos@172 83 example-prereqs := \
bos@172 84 /usr/bin/merge
bos@172 85
bos@157 86 dist-sources := \
bos@159 87 ../html/hgicon.png \
bos@157 88 ../html/index.html.var \
bos@157 89 ../html/index.en.html
bos@157 90
bos@0 91 latex-options = \
bos@0 92 -interaction batchmode \
bos@0 93 -output-directory $(dir $(1)) \
bos@0 94 -jobname $(basename $(notdir $(1)))
bos@0 95
bos@177 96 hg = $(shell which hg)
bos@177 97
bos@177 98 hg-id = $(shell hg parents --template '{node|short}\n')
bos@177 99
bos@177 100 hg-version = $(shell hg version -q | \
bos@177 101 sed 's,.*(version \(unknown\|[a-f0-9]*\)),\1,')
bos@177 102
bos@0 103 all: pdf html
bos@0 104
bos@0 105 pdf: pdf/hgbook.pdf
bos@0 106
bos@18 107 define pdf
bos@0 108 mkdir -p $(dir $@)
bos@21 109 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@2 110 cp 99book.bib $(dir $@)
bos@2 111 cd $(dir $@) && bibtex $(basename $(notdir $@))
bos@16 112 cd $(dir $@) && makeindex $(basename $(notdir $@))
bos@21 113 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@21 114 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@26 115 if grep 'Reference.*undefined' $(@:.pdf=.log); then exit 1; fi
bos@18 116 endef
bos@18 117
bos@124 118 image-pdf := $(image-dot:%.dot=%.pdf) $(image-svg:%.svg=%.pdf) $(image-png)
bos@124 119
bos@124 120 pdf/hgbook.pdf: $(sources) $(image-pdf) examples
bos@18 121 $(call pdf)
bos@0 122
bos@149 123 html: onepage split
bos@149 124
bos@171 125 htlatex := /usr/bin/htlatex
bos@149 126
bos@171 127 onepage: $(htlatex) html/onepage/hgbook.html
bos@171 128
bos@171 129 split: $(htlatex) html/split/hgbook.html
bos@0 130
bos@18 131 # This is a horrible hack to work around the fact that the htlatex
bos@18 132 # command in tex4ht is itself a horrible hack. I really don't want to
bos@18 133 # include verbatim the big wad of TeX that is repeated in that script,
bos@171 134 # but I've given up and run a hacked copy as htlatex.book here.
bos@18 135
bos@0 136 define htlatex
bos@0 137 mkdir -p $(dir $(1))
bos@170 138 cp 99book.bib $(dir $(1))
bos@170 139 TEXINPUTS=$(dir $(2)): ./htlatex.book $(2) "bookhtml,html4-uni,$(3)" " -cunihtf -utf8" "$(dir $(1))" "$(call latex-options,$(1))" || (rm -f $(1); exit 1)
bos@0 140 cd $(dir $(1)) && tex4ht -f/$(basename $(notdir $(1))) -cvalidate -cunihtf
bos@0 141 cd $(dir $(1)) && t4ht -f/$(basename $(notdir $(1)))
bos@149 142 ./fixhtml.py $(dir $(1))/*.html
bos@0 143 endef
bos@0 144
bos@124 145 image-html := $(image-dot:%.dot=%.png) $(image-svg:%.svg=%.png) $(image-png)
bos@124 146
bos@149 147 html/onepage/hgbook.html: $(sources) $(image-html) examples hgbook.css bookhtml.cfg
bos@0 148 $(call htlatex,$@,$<)
bos@11 149 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@149 150 cp hgbook.css $(dir $@)
bos@0 151
bos@149 152 html/split/hgbook.html: $(sources) $(image-html) examples hgbook.css bookhtml.cfg
bos@0 153 $(call htlatex,$@,$<,2)
bos@11 154 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@149 155 cp hgbook.css $(dir $@)
bos@18 156
bos@18 157 # Produce 90dpi PNGs for the web.
bos@18 158
bos@11 159 %.png: %.svg
bos@11 160 inkscape -D -e $@ $<
bos@11 161
bos@124 162 %.svg: %.dot
bos@124 163 dot -Tsvg -o $@ $<
bos@124 164
jeffpc@30 165 # Produce eps & pdf for the pdf
bos@18 166
jeffpc@30 167 %.pdf: %.eps
jeffpc@30 168 epstopdf $<
jeffpc@30 169
jeffpc@30 170 %.eps: %.svg
bos@32 171 inkscape -E $@ $<
bos@11 172
bos@124 173 %.eps: %.dot
bos@124 174 dot -Tps -o $@ $<
bos@124 175
bos@172 176 examples: $(example-prereqs) examples/.run
bos@4 177
bos@86 178 examples/.run: $(example-sources:%=examples/%.run)
bos@45 179 touch examples/.run
bos@45 180
bos@45 181 examples/%.run: examples/% examples/run-example
bos@45 182 cd examples && ./run-example $(notdir $<)
bos@4 183
bos@18 184 build_id.tex: $(wildcard ../.hg/00changelog.[id])
bos@177 185 echo -n $(hg-id) > build_id.tex
bos@177 186
bos@177 187 hg_id.tex: $(hg)
bos@177 188 echo -n $(hg-version) > hg_id.tex
bos@16 189
bos@0 190 clean:
bos@153 191 rm -rf dist html pdf \
bos@124 192 $(image-dot:%.dot=%.pdf) \
bos@124 193 $(image-dot:%.dot=%.png) \
bos@103 194 $(image-svg:%.svg=%.pdf) \
bos@103 195 $(image-svg:%.svg=%.png) \
bos@177 196 examples/*.{lxo,run} examples/.run build_id.tex hg_id.tex
bos@153 197
bos@157 198 install: pdf split $(dist-sources)
bos@153 199 rm -rf dist
bos@153 200 mkdir -p dist
bos@153 201 cp pdf/hgbook.pdf dist
bos@153 202 cp html/split/*.{css,html,png} dist
bos@157 203 cp $(dist-sources) dist
bos@153 204
bos@153 205 rsync: install
bos@153 206 rsync -avz --delete dist sp.red-bean.com:public_html/hgbook