]> git.wh0rd.org - fontconfig.git/blob - doc/Makefile.am
Generate and install PDF versions of the manuals
[fontconfig.git] / doc / Makefile.am
1 #
2 # $Id$
3 #
4 # Copyright © 2003 Keith Packard
5 #
6 # Permission to use, copy, modify, distribute, and sell this software and its
7 # documentation for any purpose is hereby granted without fee, provided that
8 # the above copyright notice appear in all copies and that both that
9 # copyright notice and this permission notice appear in supporting
10 # documentation, and that the name of Keith Packard not be used in
11 # advertising or publicity pertaining to distribution of the software without
12 # specific, written prior permission. Keith Packard makes no
13 # representations about the suitability of this software for any purpose. It
14 # is provided "as is" without express or implied warranty.
15 #
16 # KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 # EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 # PERFORMANCE OF THIS SOFTWARE.
23
24 CC = @CC_FOR_BUILD@
25 EXEEXT = @EXEEXT_FOR_BUILD@
26 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
27
28 DOC_SRC = $(srcdir)
29 DOC_MODULE = fontconfig
30 DOC2HTML = docbook2html
31 DOC2TXT = docbook2txt
32 DOC2MAN = docbook2man
33 DOC2PDF = docbook2pdf
34
35 TXT = fontconfig-user.txt fontconfig-devel.txt
36 PDF = fontconfig-user.pdf fontconfig-devel.pdf
37 HTML_FILES = fontconfig-user.html
38 HTML_DIR = fontconfig-devel
39 SGML = fontconfig-user.sgml fontconfig-devel.sgml
40 FNCS_TMPL = ${DOC_SRC}/func.sgml
41
42 DOC_FUNCS_FNCS=\
43 fcatomic.fncs \
44 fcblanks.fncs \
45 fccharset.fncs \
46 fcconfig.fncs \
47 fcconstant.fncs \
48 fcfile.fncs \
49 fcfontset.fncs \
50 fcfreetype.fncs \
51 fcinit.fncs \
52 fcmatrix.fncs \
53 fcobjectset.fncs \
54 fcobjecttype.fncs \
55 fcpattern.fncs \
56 fcstring.fncs \
57 fcstrset.fncs \
58 fcvalue.fncs
59
60 DOC_FUNCS_SGML=\
61 fcatomic.sgml \
62 fcblanks.sgml \
63 fccharset.sgml \
64 fcconfig.sgml \
65 fcconstant.sgml \
66 fcfile.sgml \
67 fcfontset.sgml \
68 fcfreetype.sgml \
69 fcinit.sgml \
70 fcmatrix.sgml \
71 fcobjectset.sgml \
72 fcobjecttype.sgml \
73 fcpattern.sgml \
74 fcstring.sgml \
75 fcstrset.sgml \
76 fcvalue.sgml
77
78 man_MANS=fonts-conf.5 @DOCMAN3@
79
80 noinst_PROGRAMS=edit-sgml
81 edit_sgml_SOURCES=edit-sgml.c
82
83 docdir=@DOCDIR@
84
85 DOC_FILES=$(TXT) $(PDF) $(HTML_FILES)
86 LOCAL_DOCS=$(man_MANS) $(DOC_FILES) $(HTML_DIR)/*
87
88 EXTRA_DIST=$(LOCAL_DOCS) $(SGML) $(DOC_FUNCS_FNCS) $(FNCS_TMPL) confdir.sgml.in
89
90 SUFFIXES=.fncs .sgml .txt .html
91
92 if USEDOCBOOK
93
94 .fncs.sgml:
95 $(RM) $@
96 ./edit-sgml$(EXEEXT) $(FNCS_TMPL) < '$<' > $*.sgml
97
98 .sgml.txt:
99 $(RM) $@
100 $(DOC2TXT) $<
101
102 .sgml.pdf:
103 $(RM) $@
104 $(DOC2PDF) $<
105
106 $(man_MANS): func.refs
107
108 func.refs: local-fontconfig-devel.sgml $(DOC_FUNCS_SGML) version.sgml confdir.sgml
109 $(RM) func.refs
110 $(DOC2MAN) local-fontconfig-devel.sgml
111 mv manpage.refs func.refs
112 $(RM) manpage.links
113
114 local-fontconfig-devel.sgml: fontconfig-devel.sgml
115 $(LN_S) $< $@
116
117 $(DOC_FUNCS_SGML): edit-sgml$(EXEEXT) $(FNCS_TMPL)
118
119 fonts-conf.5: local-fontconfig-user.sgml version.sgml confdir.sgml
120 $(RM) $@
121 $(DOC2MAN) local-fontconfig-user.sgml
122 $(RM) manpage.refs manpage.links
123
124 local-fontconfig-user.sgml: fontconfig-user.sgml
125 $(LN_S) $< $@
126
127 all-local: $(LOCAL_DOCS)
128
129 clean-local:
130 $(RM) $(man_MANS) $(DOC_FILES) $(DOC_FUNCS_SGML) func.refs
131 $(RM) -r $(HTML_DIR)
132
133 $(HTML_DIR): local-fontconfig-devel.sgml $(DOC_FUNCS_SGML) version.sgml confdir.sgml
134 $(RM) -r $(HTML_DIR)
135 $(DOC2HTML) -o $(HTML_DIR) local-fontconfig-devel.sgml
136
137 fontconfig-devel.txt: local-fontconfig-devel.sgml version.sgml confdir.sgml
138 $(RM) $@
139 $(DOC2TXT) local-fontconfig-devel.sgml
140 mv local-fontconfig-devel.txt $@
141
142 fontconfig-devel.pdf: local-fontconfig-devel.sgml version.sgml confdir.sgml
143 $(RM) $@
144 $(DOC2PDF) local-fontconfig-devel.sgml
145 mv local-fontconfig-devel.pdf $@
146
147 fontconfig-user.html: local-fontconfig-user.sgml version.sgml confdir.sgml
148 $(RM) $@ local-$@ $@.tmp
149 $(DOC2HTML) -u local-fontconfig-user.sgml > $@.tmp
150 -test -f local-$@ && mv local-$@ $@
151 -test -f $@ || mv $@.tmp $@
152 -test -f $@.tmp && $(RM) $@.tmp
153
154 fontconfig-user.txt: local-fontconfig-user.sgml version.sgml confdir.sgml
155 $(RM) $@
156 $(DOC2TXT) local-fontconfig-user.sgml
157 mv local-fontconfig-user.txt $@
158
159 fontconfig-user.pdf: local-fontconfig-user.sgml version.sgml confdir.sgml
160 $(RM) $@
161 $(DOC2PDF) local-fontconfig-user.sgml
162 mv local-fontconfig-user.pdf $@
163
164 STRIPNL=awk '{ if (NR > 1) printf ("\n"); printf ("%s", $$0); }'
165 confdir.sgml: ${DOC_SRC}/confdir.sgml.in
166 sed "s,@CONFDIR\@,${CONFDIR}," < ${DOC_SRC}/confdir.sgml.in | $(STRIPNL) > confdir.sgml
167
168 CLEANFILES=confdir.sgml local-fontconfig-user.sgml local-fontconfig-devel.sgml
169
170 else
171 all-local:
172 clean-local:
173 endif
174
175 htmldocdir=$(docdir)/$(HTML_DIR)
176
177 doc_DATA = $(DOC_FILES)
178
179 htmldoc_DATA = $(HTML_DIR)/*
180
181 $(HTML_DIR)/*: $(HTML_DIR)