hgbook

annotate en/Makefile @ 87:0995016342f8

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