hgbook

annotate en/Makefile @ 25:9d5b6d303ef5

Make it 2/3 through documenting MQ commands.
Add a note on a few quirks of how patches represent data.
author Bryan O'Sullivan <bos@serpentine.com>
date Sun Jul 09 23:18:39 2006 -0700 (2006-07-09)
parents ce3339dbeb6f 187702df428b
children 1bc6c1f0192a
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@16 9 intro.tex \
bos@16 10 mq.tex \
bos@16 11 build_id.tex
bos@0 12
bos@11 13 image-sources := \
bos@11 14 mq-stack.svg
bos@11 15
bos@4 16 example-sources := \
bos@4 17 examples/run-example \
bos@7 18 examples/mq.qinit-help \
bos@19 19 examples/mq.diff \
bos@19 20 examples/mq.tarball \
bos@19 21 examples/mq.tools \
bos@7 22 examples/mq.tutorial
bos@4 23
bos@0 24 latex-options = \
bos@0 25 -interaction batchmode \
bos@0 26 -output-directory $(dir $(1)) \
bos@0 27 -jobname $(basename $(notdir $(1)))
bos@0 28
bos@0 29 all: pdf html
bos@0 30
bos@0 31 pdf: pdf/hgbook.pdf
bos@0 32
bos@18 33 define pdf
bos@0 34 mkdir -p $(dir $@)
bos@21 35 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@2 36 cp 99book.bib $(dir $@)
bos@2 37 cd $(dir $@) && bibtex $(basename $(notdir $@))
bos@16 38 cd $(dir $@) && makeindex $(basename $(notdir $@))
bos@21 39 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@21 40 TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1)
bos@18 41 endef
bos@18 42
bos@18 43 pdf/hgbook.pdf: $(sources) $(image-sources:%.svg=%_pdf.png) examples
bos@18 44 $(call pdf)
bos@0 45
bos@0 46 html: html/onepage/hgbook.html html/split/hgbook.html
bos@0 47
bos@18 48 # This is a horrible hack to work around the fact that the htlatex
bos@18 49 # command in tex4ht is itself a horrible hack. I really don't want to
bos@18 50 # include verbatim the big wad of TeX that is repeated in that script,
bos@18 51 # so instead I mangle the script itself.
bos@18 52
bos@0 53 define htlatex
bos@0 54 mkdir -p $(dir $(1))
bos@7 55 head -2 $(shell which htlatex) > $(dir $(1))/htlatex.book
bos@7 56 cp 99book.bib $(dir $@)
bos@7 57 echo '(cd $(dir $@) && bibtex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@16 58 echo '(cd $(dir $@) && makeindex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book
bos@7 59 head -3 $(shell which htlatex) >> $(dir $(1))/htlatex.book
bos@7 60 echo 'echo status $$$$' >> $(dir $(1))/htlatex.book
bos@0 61 chmod 755 $(dir $(1))/htlatex.book
bos@21 62 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 63 cd $(dir $(1)) && tex4ht -f/$(basename $(notdir $(1))) -cvalidate -cunihtf
bos@0 64 cd $(dir $(1)) && t4ht -f/$(basename $(notdir $(1)))
bos@7 65 perl -pi -e 's/&#x00([0-7][0-9a-f]);/chr(hex($$1))/egi' $(dir $(1))/*.html
bos@0 66 endef
bos@0 67
bos@11 68 html/onepage/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 69 $(call htlatex,$@,$<)
bos@11 70 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 71
bos@11 72 html/split/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples
bos@0 73 $(call htlatex,$@,$<,2)
bos@11 74 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@0 75
bos@18 76 beta: beta/pdf/hgbook.pdf beta/html/onepage/hgbook.html beta/html/split/hgbook.html
bos@18 77
bos@18 78 beta/%.tex: %.tex
bos@18 79 ./fblinks $(hg_id) $(dir $@) $<
bos@18 80
bos@18 81 beta/pdf/hgbook.pdf: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%_pdf.png) examples fblinks
bos@18 82 $(call pdf)
bos@18 83
bos@18 84 beta/html/onepage/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 85 $(call htlatex,$@,$<)
bos@18 86 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 87
bos@18 88 beta/html/split/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples
bos@18 89 $(call htlatex,$@,$<,2)
bos@18 90 cp $(image-sources:%.svg=%.png) $(dir $@)
bos@18 91
bos@18 92 # Produce 90dpi PNGs for the web.
bos@18 93
bos@11 94 %.png: %.svg
bos@11 95 inkscape -D -e $@ $<
bos@11 96
bos@18 97 # Produce 300dpi PNGs for PDF.
bos@18 98
bos@11 99 %_pdf.png: %.svg
bos@11 100 inkscape -D -d 300 -e $@ $<
bos@11 101
bos@4 102 examples: examples/.run
bos@4 103
bos@4 104 examples/.run: $(example-sources)
bos@4 105 cd examples && ./run-example
bos@4 106
bos@18 107 build_id.tex: $(wildcard ../.hg/00changelog.[id])
bos@18 108 echo $(hg_id) > build_id.tex
bos@16 109
bos@0 110 clean:
bos@18 111 rm -rf beta html pdf *.eps *.png *.aux *.dvi *.log *.out \
bos@18 112 examples/*.out examples/.run build_id.tex