hgbook

annotate en/Makefile @ 84:43b9793b4e38

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