hgbook

annotate en/Makefile @ 30:cc1e6f1d7161

Use PDF instead of PNG for images in the PDF book
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Sat Jul 15 21:53:57 2006 -0400 (2006-07-15)
parents 1bc6c1f0192a
children 51d94bd2804c
rev   line source
bos@18 1 # This makefile requires GNU make.
bos@18 2
bos@21 3 hg_id := $(shell hg parents --template '{node|short}' | head -1)
bos@18 4
bos@2 5 sources := \
bos@2 6 00book.tex \
bos@2 7 99book.bib \
bos@2 8 99defs.tex \
bos@26 9 preface.tex \
bos@16 10 intro.tex \
bos@16 11 mq.tex \
bos@16 12 build_id.tex
bos@0 13
bos@11 14 image-sources := \
bos@11 15 mq-stack.svg
bos@11 16
bos@4 17 example-sources := \
bos@4 18 examples/run-example \
bos@7 19 examples/mq.qinit-help \
bos@19 20 examples/mq.diff \
bos@19 21 examples/mq.tarball \
bos@19 22 examples/mq.tools \
bos@7 23 examples/mq.tutorial
bos@4 24
bos@0 25 latex-options = \
bos@0 26 -interaction batchmode \
bos@0 27 -output-directory $(dir $(1)) \
bos@0 28 -jobname $(basename $(notdir $(1)))
bos@0 29
bos@0 30 all: pdf html
bos@0 31
bos@0 32 pdf: pdf/hgbook.pdf
bos@0 33
bos@18 34 define pdf
bos@0 35 mkdir -p $(dir $@)
bos@21 36 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@2 37 cp 99book.bib $(dir $@)
bos@2 38 cd $(dir $@) && bibtex $(basename $(notdir $@))
bos@16 39 cd $(dir $@) && makeindex $(basename $(notdir $@))
bos@21 40 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@21 41 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@26 42 if grep 'Reference.*undefined' $(@:.pdf=.log); then exit 1; fi
bos@18 43 endef
bos@18 44
jeffpc@30 45 pdf/hgbook.pdf: $(sources) $(image-sources:%.svg=%.pdf) examples
bos@18 46 $(call pdf)
bos@0 47
bos@0 48 html: html/onepage/hgbook.html html/split/hgbook.html
bos@0 49
bos@18 50 # This is a horrible hack to work around the fact that the htlatex
bos@18 51 # command in tex4ht is itself a horrible hack. I really don't want to
bos@18 52 # include verbatim the big wad of TeX that is repeated in that script,
bos@18 53 # so instead I mangle the script itself.
bos@18 54
bos@0 55 define htlatex
bos@0 56 mkdir -p $(dir $(1))
bos@7 57 head -2 $(shell which htlatex) > $(dir $(1))/htlatex.book
bos@7 58 cp 99book.bib $(dir $@)
bos@7 59 echo '(cd $(dir $@) && bibtex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@16 60 echo '(cd $(dir $@) && makeindex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@7 61 head -3 $(shell which htlatex) >> $(dir $(1))/htlatex.book
bos@7 62 echo 'echo status $$$$' >> $(dir $(1))/htlatex.book
bos@0 63 chmod 755 $(dir $(1))/htlatex.book
bos@21 64 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 65 cd $(dir $(1)) && tex4ht -f/$(basename $(notdir $(1))) -cvalidate -cunihtf
bos@0 66 cd $(dir $(1)) && t4ht -f/$(basename $(notdir $(1)))
bos@7 67 perl -pi -e 's/&#x00([0-7][0-9a-f]);/chr(hex($$1))/egi' $(dir $(1))/*.html
bos@0 68 endef
bos@0 69
bos@11 70 html/onepage/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 71 $(call htlatex,$@,$<)
bos@11 72 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 73
bos@11 74 html/split/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 75 $(call htlatex,$@,$<,2)
bos@11 76 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 77
bos@18 78 beta: beta/pdf/hgbook.pdf beta/html/onepage/hgbook.html beta/html/split/hgbook.html
bos@18 79
bos@18 80 beta/%.tex: %.tex
bos@18 81 ./fblinks $(hg_id) $(dir $@) $<
bos@18 82
jeffpc@30 83 beta/pdf/hgbook.pdf: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.pdf) examples fblinks
bos@18 84 $(call pdf)
bos@18 85
bos@18 86 beta/html/onepage/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 87 $(call htlatex,$@,$<)
bos@18 88 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 89
bos@18 90 beta/html/split/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 91 $(call htlatex,$@,$<,2)
bos@18 92 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 93
bos@18 94 # Produce 90dpi PNGs for the web.
bos@18 95
bos@11 96 %.png: %.svg
bos@11 97 inkscape -D -e $@ $<
bos@11 98
jeffpc@30 99 # Produce eps & pdf for the pdf
bos@18 100
jeffpc@30 101 %.pdf: %.eps
jeffpc@30 102 epstopdf $<
jeffpc@30 103
jeffpc@30 104 %.eps: %.svg
jeffpc@30 105 inkscape -D -E $@ $<
bos@11 106
bos@4 107 examples: examples/.run
bos@4 108
bos@4 109 examples/.run: $(example-sources)
bos@4 110 cd examples && ./run-example
bos@4 111
bos@18 112 build_id.tex: $(wildcard ../.hg/00changelog.[id])
bos@18 113 echo $(hg_id) > build_id.tex
bos@16 114
bos@0 115 clean:
jeffpc@30 116 rm -rf beta html pdf *.eps *.pdf *.png *.aux *.dvi *.log *.out \
bos@18 117 examples/*.out examples/.run build_id.tex