bos@18: # This makefile requires GNU make. bos@18: bos@21: hg_id := $(shell hg parents --template '{node|short}' | head -1) bos@18: bos@2: sources := \ bos@2: 00book.tex \ bos@2: 99book.bib \ bos@2: 99defs.tex \ bos@16: intro.tex \ bos@16: mq.tex \ bos@16: build_id.tex bos@0: bos@11: image-sources := \ bos@11: mq-stack.svg bos@11: bos@4: example-sources := \ bos@4: examples/run-example \ bos@7: examples/mq.qinit-help \ bos@19: examples/mq.diff \ bos@19: examples/mq.tarball \ bos@19: examples/mq.tools \ bos@7: examples/mq.tutorial bos@4: bos@0: latex-options = \ bos@0: -interaction batchmode \ bos@0: -output-directory $(dir $(1)) \ bos@0: -jobname $(basename $(notdir $(1))) bos@0: bos@0: all: pdf html bos@0: bos@0: pdf: pdf/hgbook.pdf bos@0: bos@18: define pdf bos@0: mkdir -p $(dir $@) bos@21: TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1) bos@2: cp 99book.bib $(dir $@) bos@2: cd $(dir $@) && bibtex $(basename $(notdir $@)) bos@16: cd $(dir $@) && makeindex $(basename $(notdir $@)) bos@21: TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1) bos@21: TEXINPUTS=$(dir $<): pdflatex $(call latex-options,$@) $< || (rm -f $@; exit 1) bos@18: endef bos@18: bos@18: pdf/hgbook.pdf: $(sources) $(image-sources:%.svg=%_pdf.png) examples bos@18: $(call pdf) bos@0: bos@0: html: html/onepage/hgbook.html html/split/hgbook.html bos@0: bos@18: # This is a horrible hack to work around the fact that the htlatex bos@18: # command in tex4ht is itself a horrible hack. I really don't want to bos@18: # include verbatim the big wad of TeX that is repeated in that script, bos@18: # so instead I mangle the script itself. bos@18: bos@0: define htlatex bos@0: mkdir -p $(dir $(1)) bos@7: head -2 $(shell which htlatex) > $(dir $(1))/htlatex.book bos@7: cp 99book.bib $(dir $@) bos@7: echo '(cd $(dir $@) && bibtex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book bos@16: echo '(cd $(dir $@) && makeindex $(basename $(notdir $@)))' >> $(dir $(1))/htlatex.book bos@7: head -3 $(shell which htlatex) >> $(dir $(1))/htlatex.book bos@7: echo 'echo status $$$$' >> $(dir $(1))/htlatex.book bos@0: chmod 755 $(dir $(1))/htlatex.book bos@21: 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: cd $(dir $(1)) && tex4ht -f/$(basename $(notdir $(1))) -cvalidate -cunihtf bos@0: cd $(dir $(1)) && t4ht -f/$(basename $(notdir $(1))) bos@7: perl -pi -e 's/�([0-7][0-9a-f]);/chr(hex($$1))/egi' $(dir $(1))/*.html bos@0: endef bos@0: bos@11: html/onepage/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples bos@0: $(call htlatex,$@,$<) bos@11: cp $(image-sources:%.svg=%.png) $(dir $@) bos@0: bos@11: html/split/hgbook.html: $(sources) $(image-sources:%.svg=%.png) examples bos@0: $(call htlatex,$@,$<,2) bos@11: cp $(image-sources:%.svg=%.png) $(dir $@) bos@0: bos@18: beta: beta/pdf/hgbook.pdf beta/html/onepage/hgbook.html beta/html/split/hgbook.html bos@18: bos@18: beta/%.tex: %.tex bos@18: ./fblinks $(hg_id) $(dir $@) $< bos@18: bos@18: beta/pdf/hgbook.pdf: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%_pdf.png) examples fblinks bos@18: $(call pdf) bos@18: bos@18: beta/html/onepage/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples bos@18: $(call htlatex,$@,$<) bos@18: cp $(image-sources:%.svg=%.png) $(dir $@) bos@18: bos@18: beta/html/split/hgbook.html: $(sources:%.tex=beta/%.tex) $(image-sources:%.svg=%.png) examples bos@18: $(call htlatex,$@,$<,2) bos@18: cp $(image-sources:%.svg=%.png) $(dir $@) bos@18: bos@18: # Produce 90dpi PNGs for the web. bos@18: bos@11: %.png: %.svg bos@11: inkscape -D -e $@ $< bos@11: bos@18: # Produce 300dpi PNGs for PDF. bos@18: bos@11: %_pdf.png: %.svg bos@11: inkscape -D -d 300 -e $@ $< bos@11: bos@4: examples: examples/.run bos@4: bos@4: examples/.run: $(example-sources) bos@4: cd examples && ./run-example bos@4: bos@18: build_id.tex: $(wildcard ../.hg/00changelog.[id]) bos@18: echo $(hg_id) > build_id.tex bos@16: bos@0: clean: bos@18: rm -rf beta html pdf *.eps *.png *.aux *.dvi *.log *.out \ bos@18: examples/*.out examples/.run build_id.tex