hgbook

annotate en/Makefile @ 115:b74102b56df5

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