hgbook

annotate en/Makefile @ 80:ea951cfb5cd9

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