[doc] Update to jquery-1.11.2.
[ttfautohint.git] / doc / Makefile.am
blob2e0d5a09720f8b4da7eada4f1dfbaeca20b3390c
1 # Makefile.am
3 # Copyright (C) 2011-2014 by Werner Lemberg.
5 # This file is part of the ttfautohint library, and may only be used,
6 # modified, and distributed under the terms given in `COPYING'.  By
7 # continuing to use, modify, or distribute this file you indicate that you
8 # have read `COPYING' and understand and accept it fully.
10 # The file `COPYING' mentioned in the previous paragraph is distributed
11 # with the ttfautohint library.
13 DOCSRC = ttfautohint-1.pandoc \
14          ttfautohint-2.pandoc \
15          ttfautohint-3.pandoc \
16          ../NEWS
18 DOCIMGSVG = img/blue-zones.svg \
19             img/glyph-terms.svg \
20             img/o-and-i.svg \
21             img/segment-edge.svg
23 DOCIMGPDF = img/blue-zones.pdf \
24             img/glyph-terms.pdf \
25             img/o-and-i.pdf \
26             img/segment-edge.pdf
28 DOCIMGPNG = img/ttfautohintGUI.png \
29             img/a-before-hinting.png \
30             img/a-after-hinting.png \
31             img/a-after-autohinting.png \
32             img/afii10108-11px-after-hinting.png \
33             img/afii10108-11px-before-hinting.png \
34             img/afii10108-12px-after-hinting.png \
35             img/afii10108-12px-before-hinting.png \
36             img/e-17px-x14.png \
37             img/e-17px-x17.png \
38             img/ff-g-26px.png \
39             img/ff-g-26px-wD.png \
40             img/Halant-Regular-O-Q.png \
41             img/Halant-Regular-O-Q-unhinted-12px.png \
42             img/Halant-Regular-O-good-Q-badly-hinted-12px.png \
43             img/Halant-Regular-O-good-Q-better-hinted-12px.png \
44             img/Halant-Regular-O-good-Q-well-hinted-12px.png
46 DOC = ttfautohint.html \
47       ttfautohint.pdf \
48       ttfautohint.txt \
49       $(DOCIMGPNG) \
50       $(DOCIMGSVG) \
51       $(DOCIMGPDF) \
52       footnote-popup.js \
53       jquery-1.11.2.min.js
55 EXTRA_DIST = c2pandoc.sed \
56              make-snapshot.sh \
57              strip-comments.sh \
58              ttfautohint-1.pandoc \
59              ttfautohint-2.pandoc \
60              ttfautohint-3.pandoc \
61              template.html \
62              template.tex \
63              ttfautohint-css.html \
64              ttfautohint-js.html
66 if WITH_DOC
67   nobase_dist_doc_DATA = $(DOC)
68 endif
71 ttfautohint-2.pandoc: $(top_srcdir)/lib/ttfautohint.h
72         $(SED) -f $(srcdir)/c2pandoc.sed < $< > $@
74 ttfautohint.txt: $(DOCSRC)
75         $(SHELL) $(srcdir)/strip-comments.sh $^ > $@
77 if WITH_DOC
79   # suffix rules must always start in column 0
80 .svg.pdf:
81           $(INKSCAPE) --export-pdf=$@ $<
83   # build snapshot image of ttfautohintGUI:
84   # this needs X11 and ImageMagick's `import' tool
85   # (in the `make-snaphshot.sh' script)
86   img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \
87                           $(top_srcdir)/configure.ac
88           cd $(top_builddir)/frontend \
89             && $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT)
90           -mkdir img 2> /dev/null
91           $(SHELL) $(srcdir)/make-snapshot.sh \
92                      $(top_builddir)/frontend/ttfautohintGUI$(EXEEXT) $@
94   ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \
95                     ttfautohint-css.html ttfautohint-js.html \
96                     template.html $(top_srcdir)/.version
97           $(PANDOC) --smart \
98                     --template=$(srcdir)/template.html \
99                     --default-image-extension=".svg" \
100                     --variable="version:$(VERSION)" \
101                     --toc \
102                     --include-in-header=$(srcdir)/ttfautohint-css.html \
103                     --include-in-header=$(srcdir)/ttfautohint-js.html \
104                     --standalone \
105                     --output=$@ $<
107   ttfautohint.pdf: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \
108                    template.tex $(top_srcdir)/.version
109           TEXINPUTS="$(srcdir);" \
110           $(PANDOC) --smart \
111                     --latex-engine=$(LATEX) \
112                     --template=$(srcdir)/template.tex \
113                     --default-image-extension=".pdf" \
114                     --variable="version:$(VERSION)" \
115                     --number-sections \
116                     --toc \
117                     --chapters \
118                     --standalone \
119                     --output=$@ $<
120 else
121 .svg.pdf:
122           @echo 1>&2 "warning: can't generate \`$@'"
123           @echo 1>&2 "         please install inkscape and reconfigure"
125   img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \
126                           $(top_srcdir)/configure.ac
127           @echo 1>&2 "warning: can't generate \`$@'"
128           @echo 1>&2 "         please install ImageMagick's \`import' tool and reconfigure"
130   ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \
131                     ttfautohint-css.html template.html $(top_srcdir)/.version
132           @echo 1>&2 "warning: can't generate \`$@'"
133           @echo 1>&2 "         pleasae install pandoc and reconfigure"
135   ttfautohint.pdf: $ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \
136                    template.tex $(top_srcdir)/.version
137           @echo 1>&2 "warning: can't generate \`$@'"
138           @echo 1>&2 "         please install pdftex and pandoc, then reconfigure"
139 endif
141 # end of Makefile.am