hgbook

annotate en/Makefile @ 122:3af28630fe8c

How to goodbye depression by reverting one thousand times daily.
author Bryan O'Sullivan <bos@serpentine.com>
date Wed Nov 15 16:57:29 2006 -0800 (2006-11-15)
parents 9094c9fda8ec
children c9aad709bd3a
rev   line source
bos@18 1 # This makefile requires GNU make.
bos@18 2
gb@69 3 hg_id := $(shell hg parents --template '{node|short}\n')
bos@18 4
bos@2 5 sources := \
bos@2 6 00book.tex \
bos@2 7 99book.bib \
bos@2 8 99defs.tex \
bos@34 9 build_id.tex \
bos@59 10 concepts.tex \
bos@42 11 daily.tex \
bos@34 12 hook.tex \
bos@16 13 intro.tex \
bos@16 14 mq.tex \
bos@104 15 mq-collab.tex \
bos@104 16 mq-ref.tex \
bos@76 17 preface.tex \
bos@85 18 srcinstall.tex \
bos@84 19 template.tex \
bos@95 20 tour-basic.tex \
bos@121 21 tour-merge.tex \
bos@121 22 undo.tex
bos@0 23
bos@11 24 image-sources := \
bos@108 25 filelog.svg \
bos@103 26 kdiff3.png \
bos@109 27 metadata.svg \
bos@96 28 mq-stack.svg \
bos@112 29 revlog.svg \
bos@110 30 snapshot.svg \
bos@99 31 tour-history.svg \
bos@103 32 tour-merge-conflict.svg \
bos@103 33 tour-merge-merge.svg \
bos@100 34 tour-merge-pull.svg \
bos@113 35 tour-merge-sep-repos.svg \
bos@113 36 wdir.svg \
bos@115 37 wdir-after-commit.svg \
bos@115 38 wdir-branch.svg \
bos@115 39 wdir-merge.svg \
bos@115 40 wdir-pre-branch.svg
bos@103 41
bos@103 42 image-svg := $(filter %.svg,$(image-sources))
bos@11 43
bos@4 44 example-sources := \
bos@117 45 daily.copy \
bos@86 46 daily.files \
bos@118 47 daily.rename \
bos@122 48 daily.revert \
bos@86 49 hook.msglen \
bos@86 50 hook.simple \
bos@86 51 hook.ws \
bos@104 52 mq.guards \
bos@86 53 mq.qinit-help \
bos@86 54 mq.dodiff \
bos@86 55 mq.id \
bos@86 56 mq.tarball \
bos@86 57 mq.tools \
bos@86 58 mq.tutorial \
bos@121 59 rollback \
bos@86 60 template.simple \
bos@87 61 template.svnstyle \
bos@103 62 tour \
bos@103 63 tour-merge-conflict
bos@4 64
bos@0 65 latex-options = \
bos@0 66 -interaction batchmode \
bos@0 67 -output-directory $(dir $(1)) \
bos@0 68 -jobname $(basename $(notdir $(1)))
bos@0 69
bos@0 70 all: pdf html
bos@0 71
bos@0 72 pdf: pdf/hgbook.pdf
bos@0 73
bos@18 74 define pdf
bos@0 75 mkdir -p $(dir $@)
bos@21 76 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@2 77 cp 99book.bib $(dir $@)
bos@2 78 cd $(dir $@) && bibtex $(basename $(notdir $@))
bos@16 79 cd $(dir $@) && makeindex $(basename $(notdir $@))
bos@21 80 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@21 81 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@26 82 if grep 'Reference.*undefined' $(@:.pdf=.log); then exit 1; fi
bos@18 83 endef
bos@18 84
jeffpc@30 85 pdf/hgbook.pdf: $(sources) $(image-sources:%.svg=%.pdf) examples
bos@18 86 $(call pdf)
bos@0 87
bos@0 88 html: html/onepage/hgbook.html html/split/hgbook.html
bos@0 89
bos@18 90 # This is a horrible hack to work around the fact that the htlatex
bos@18 91 # command in tex4ht is itself a horrible hack. I really don't want to
bos@18 92 # include verbatim the big wad of TeX that is repeated in that script,
bos@18 93 # so instead I mangle the script itself.
bos@18 94
bos@0 95 define htlatex
bos@0 96 mkdir -p $(dir $(1))
bos@7 97 head -2 $(shell which htlatex) > $(dir $(1))/htlatex.book
bos@7 98 cp 99book.bib $(dir $@)
bos@7 99 echo '(cd $(dir $@) && bibtex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@16 100 echo '(cd $(dir $@) && makeindex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@7 101 head -3 $(shell which htlatex) >> $(dir $(1))/htlatex.book
bos@7 102 echo 'echo status $$$$' >> $(dir $(1))/htlatex.book
bos@0 103 chmod 755 $(dir $(1))/htlatex.book
bos@21 104 TEXINPUTS=$(dir $(2)): $(dir $(1))/htlatex.book $(2) "xhtml,html4-uni,$(3)" " -cunihtf -utf8" "" "$(call latex-options,$(1))" || (rm -f $(1); exit 1)
bos@0 105 cd $(dir $(1)) && tex4ht -f/$(basename $(notdir $(1))) -cvalidate -cunihtf
bos@0 106 cd $(dir $(1)) && t4ht -f/$(basename $(notdir $(1)))
bos@7 107 perl -pi -e 's/&#x00([0-7][0-9a-f]);/chr(hex($$1))/egi' $(dir $(1))/*.html
bos@0 108 endef
bos@0 109
bos@11 110 html/onepage/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 111 $(call htlatex,$@,$<)
bos@11 112 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 113
bos@11 114 html/split/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 115 $(call htlatex,$@,$<,2)
bos@11 116 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 117
bos@18 118 beta: beta/pdf/hgbook.pdf beta/html/onepage/hgbook.html beta/html/split/hgbook.html
bos@18 119
bos@18 120 beta/%.tex: %.tex
bos@18 121 ./fblinks $(hg_id) $(dir $@) $<
bos@18 122
jeffpc@30 123 beta/pdf/hgbook.pdf: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.pdf) examples fblinks
bos@18 124 $(call pdf)
bos@18 125
bos@18 126 beta/html/onepage/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 127 $(call htlatex,$@,$<)
bos@18 128 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 129
bos@18 130 beta/html/split/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 131 $(call htlatex,$@,$<,2)
bos@18 132 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 133
bos@18 134 # Produce 90dpi PNGs for the web.
bos@18 135
bos@11 136 %.png: %.svg
bos@11 137 inkscape -D -e $@ $<
bos@11 138
jeffpc@30 139 # Produce eps & pdf for the pdf
bos@18 140
jeffpc@30 141 %.pdf: %.eps
jeffpc@30 142 epstopdf $<
jeffpc@30 143
jeffpc@30 144 %.eps: %.svg
bos@32 145 inkscape -E $@ $<
bos@11 146
bos@4 147 examples: examples/.run
bos@4 148
bos@86 149 examples/.run: $(example-sources:%=examples/%.run)
bos@45 150 touch examples/.run
bos@45 151
bos@45 152 examples/%.run: examples/% examples/run-example
bos@45 153 cd examples && ./run-example $(notdir $<)
bos@4 154
bos@18 155 build_id.tex: $(wildcard ../.hg/00changelog.[id])
bos@29 156 echo -n $(hg_id) > build_id.tex
bos@16 157
bos@0 158 clean:
bos@103 159 rm -rf beta html pdf \
bos@103 160 $(image-svg:%.svg=%.pdf) \
bos@103 161 $(image-svg:%.svg=%.png) \
bos@46 162 examples/*.{out,run} examples/.run build_id.tex