Fix handling of non-square pixels, part 4.
[ttfautohint.git] / doc / Makefile.am
blob7b20a109311732fc627f04cfd64fbb28204a9319
1 # Makefile.am
3 # Copyright (C) 2011-2013 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
17 DOCIMGSVG = img/blue-zones.svg \
18             img/glyph-terms.svg \
19             img/o-and-i.svg \
20             img/segment-edge.svg
22 DOCIMGPDF = img/blue-zones.pdf \
23             img/glyph-terms.pdf \
24             img/o-and-i.pdf \
25             img/segment-edge.pdf
27 DOCIMGPNG = img/ttfautohintGUI.png \
28             img/a-before-hinting.png \
29             img/a-after-hinting.png \
30             img/a-after-autohinting.png \
31             img/afii10108-11px-after-hinting.png \
32             img/afii10108-11px-before-hinting.png \
33             img/afii10108-12px-after-hinting.png \
34             img/afii10108-12px-before-hinting.png \
35             img/e-17px-x14.png \
36             img/e-17px-x17.png \
37             img/ff-g-26px.png \
38             img/ff-g-26px-wD.png
40 DOC = ttfautohint.html \
41       ttfautohint.pdf \
42       ttfautohint.txt \
43       $(DOCIMGPNG) \
44       $(DOCIMGSVG) \
45       $(DOCIMGPDF)
47 EXTRA_DIST = c2pandoc.sed \
48              make-snapshot.sh \
49              strip-comments.sh \
50              ttfautohint-1.pandoc \
51              ttfautohint-2.pandoc \
52              ttfautohint-3.pandoc \
53              template.html \
54              template.tex \
55              ttfautohint-css.html
57 if WITH_DOC
58   nobase_dist_doc_DATA = $(DOC)
59 endif
62 ttfautohint-2.pandoc: $(top_srcdir)/lib/ttfautohint.h
63         $(SED) -f $(srcdir)/c2pandoc.sed < $< > $@
65 ttfautohint.txt: $(DOCSRC)
66         $(SHELL) $(srcdir)/strip-comments.sh $^ > $@
68 if WITH_DOC
70   # suffix rules must always start in column 0
71 .svg.pdf:
72           $(INKSCAPE) --export-pdf=$@ $<
74   # build snapshot image of ttfautohintGUI:
75   # this needs X11 and ImageMagick's `import' tool
76   # (in the `make-snaphshot.sh' script)
77   img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \
78                           $(top_srcdir)/configure.ac
79           cd $(top_builddir)/frontend \
80             && $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT)
81           -mkdir img 2> /dev/null
82           $(SHELL) $(srcdir)/make-snapshot.sh \
83                      $(top_builddir)/frontend/ttfautohintGUI$(EXEEXT) $@
85   ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \
86                     ttfautohint-css.html template.html $(top_srcdir)/.version
87           $(PANDOC) --smart \
88                     --template=$(srcdir)/template.html \
89                     --default-image-extension=".svg" \
90                     --variable="version:$(VERSION)" \
91                     --toc \
92                     --include-in-header=$(srcdir)/ttfautohint-css.html \
93                     --standalone \
94                     --output=$@ $<
96   ttfautohint.pdf: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \
97                    template.tex $(top_srcdir)/.version
98           TEXINPUTS="$(srcdir);" \
99           $(PANDOC) --smart \
100                     --latex-engine=$(LATEX) \
101                     --template=$(srcdir)/template.tex \
102                     --default-image-extension=".pdf" \
103                     --variable="version:$(VERSION)" \
104                     --number-sections \
105                     --toc \
106                     --chapters \
107                     --standalone \
108                     --output=$@ $<
109 else
110 .svg.pdf:
111           @echo 1>&2 "warning: can't generate \`$@'"
112           @echo 1>&2 "         please install inkscape and reconfigure"
114   img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \
115                           $(top_srcdir)/configure.ac
116           @echo 1>&2 "warning: can't generate \`$@'"
117           @echo 1>&2 "         please install ImageMagick's \`import' tool and reconfigure"
119   ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \
120                     ttfautohint-css.html template.html $(top_srcdir)/.version
121           @echo 1>&2 "warning: can't generate \`$@'"
122           @echo 1>&2 "         pleasae install pandoc and reconfigure"
124   ttfautohint.pdf: $ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \
125                    template.tex $(top_srcdir)/.version
126           @echo 1>&2 "warning: can't generate \`$@'"
127           @echo 1>&2 "         please install pdftex and pandoc, then reconfigure"
128 endif
130 # end of Makefile.am