1 # gnome-doc-utils.make - make magic for building documentation
2 # Copyright (C) 2004-2005 Shaun McCance <shaunm@gnome.org>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 # As a special exception to the GNU General Public License, if you
19 # distribute this file as part of a program that contains a
20 # configuration script generated by Autoconf, you may include it under
21 # the same distribution terms that you use for the rest of that program.
23 ################################################################################
24 ## @@ Generating Header Files
27 ## The name of the header file to generate
31 ## The input DocBook files for generating the header file
34 $(DOC_H_FILE
): $(DOC_H_DOCS
);
35 @
rm -f
$@.tmp
; touch
$@.tmp
;
36 echo
'const gchar* documentation_credits[] = {' >> $@.tmp
37 list
='$(DOC_H_DOCS)'; for doc in
$$list; do \
38 xmlpath
="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \
39 if
! test -f
"$$doc"; then doc
="$(srcdir)/$$doc"; fi
; \
40 xsltproc
--path
"$$xmlpath" $(_credits
) $$doc; \
42 | awk
'BEGIN{s=""}{n=split($$0,w,"<");if(s!=""&&s!=substr(w[1],1,length(w[1])-1)){print s};if(n>1){print $$0;s=""}else{s=$$0}};END{if(s!=""){print s}}' \
43 | sed
-e
's/\\/\\\\/' -e
's/"/\\"/' -e
's/\(.*\)/\t"\1",/' >> $@.tmp
44 echo
' NULL' >> $@.tmp
47 list
='$(DOC_H_DOCS)'; for doc in
$$list; do \
48 xmlpath
="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \
49 if
! test -f
"$$doc"; then doc
="$(srcdir)/$$doc"; fi
; \
50 docid
=`echo "$$doc" | sed -e 's/.*\/\([^/]*\)\.xml/\1/' \
51 | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`; \
53 ids
=`xsltproc --xinclude --path "$$xmlpath" $(_ids) $$doc`; \
55 echo
'#define HELP_'`echo $$docid`'_'`echo $$id \
56 | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`' "'$$id'"' >> $@.tmp
; \
60 cp
$@.tmp
$@
&& rm -f
$@.tmp
63 if
!HAVE_GNOME_DOC_UTILS
64 @echo
"*** GNOME Doc Utils must be installed in order to make dist"
68 .PHONY
: dist-doc-header
69 dist-doc-header
: $(DOC_H_FILE
)
70 @if
test -f
"$(DOC_H_FILE)"; then d
=; else d
="$(srcdir)/"; fi
; \
71 echo
"$(INSTALL_DATA) $${d}$(DOC_H_FILE) $(distdir)/$(DOC_H_FILE)"; \
72 $(INSTALL_DATA
) "$${d}$(DOC_H_FILE)" "$(distdir)/$(DOC_H_FILE)";
74 doc-dist-hook
: dist-check-gdu
$(if
$(DOC_H_FILE
),dist-doc-header
)
76 .PHONY
: clean-doc-header
77 _clean_doc_header
= $(if
$(DOC_H_FILE
),clean-doc-header
)
78 clean-local
: $(_clean_doc_header
)
79 distclean-local
: $(_clean_doc_header
)
80 mostlyclean-local
: $(_clean_doc_header
)
81 maintainer-clean-local
: $(_clean_doc_header
)
88 ################################################################################
89 ## @@ Generating Documentation Files
92 ## The name of the document being built
96 ## The unique identifier for a Mallard document
100 ## Page files in a Mallard document
104 ## Files included with a SYSTEM entity
108 ## Files included with XInclude
112 ## Figures and other external data
116 ## The default formats to be built and installed
117 DOC_FORMATS ?
= docbook
118 _DOC_REAL_FORMATS
= $(if
$(DOC_USER_FORMATS
),$(DOC_USER_FORMATS
),$(DOC_FORMATS
))
121 ## The languages this document is translated into
123 _DOC_REAL_LINGUAS
= $(if
$(filter environment
,$(origin LINGUAS
)), \
124 $(filter $(LINGUAS
),$(DOC_LINGUAS
)), \
127 _DOC_ABS_SRCDIR
= @abs_srcdir@
130 ################################################################################
131 ## Variables for Bootstrapping
133 _xml2po ?
= `which xml2po`
134 _xml2po_mode
= $(if
$(DOC_ID
),mallard
,docbook
)
136 _db2html ?
= `$(PKG_CONFIG) --variable db2html gnome-doc-utils`
137 _db2omf ?
= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils`
138 _malrng ?
= `$(PKG_CONFIG) --variable malrng gnome-doc-utils`
139 _chunks ?
= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome
/xslt
/docbook
/utils
/chunks.xsl
140 _credits ?
= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome
/xslt
/docbook
/utils
/credits.xsl
141 _ids ?
= $(shell $(PKG_CONFIG
) --variable xmldir gnome-doc-utils
)/gnome
/xslt
/docbook
/utils
/ids.xsl
145 _skpkgdatadir ?
= `scrollkeeper-config --pkgdatadir`
146 _sklocalstatedir ?
= `scrollkeeper-config --pkglocalstatedir`
147 _skcontentslist ?
= $(_skpkgdatadir
)/Templates
/C
/scrollkeeper_cl.xml
151 ################################################################################
152 ## @@ Rules for OMF Files
155 --stringparam db2omf.
basename $(DOC_MODULE
) \
156 --stringparam db2omf.format
$(3) \
157 --stringparam db2omf.dtd \
158 $(shell xmllint
--format
$(2) | grep
-h PUBLIC | head
-n
1 \
159 | sed
-e
's/.*PUBLIC \(\"[^\"]*\"\).*/\1/') \
160 --stringparam db2omf.lang
$(notdir $(patsubst %/$(notdir $(2)),%,$(2))) \
161 --stringparam db2omf.omf_dir
"$(OMF_DIR)" \
162 --stringparam db2omf.help_dir
"$(HELP_DIR)" \
163 --stringparam db2omf.omf_in
"$(_DOC_OMF_IN)" \
164 $(if
$(_ENABLE_SK
), \
165 --stringparam db2omf.scrollkeeper_cl
"$(_skcontentslist)") \
169 ## The OMF input file
170 _DOC_OMF_IN
= $(if
$(DOC_MODULE
),$(wildcard $(_DOC_ABS_SRCDIR
)/$(DOC_MODULE
).omf.in
))
173 ## The OMF files for DocBook output
174 _DOC_OMF_DB
= $(if
$(_DOC_OMF_IN
), \
175 $(foreach lc
,C
$(_DOC_REAL_LINGUAS
),$(DOC_MODULE
)-$(lc
).omf
))
177 $(_DOC_OMF_DB
) : $(_DOC_OMF_IN
)
178 $(_DOC_OMF_DB
) : $(DOC_MODULE
)-%.omf
: %/$(DOC_MODULE
).xml
179 @
test "x$(_ENABLE_SK)" != "xtrue" -o
-f
"$(_skcontentslist)" ||
{ \
180 echo
"The file '$(_skcontentslist)' does not exist." >&2; \
181 echo
"Please check your ScrollKeeper installation." >&2; \
183 xsltproc
-o
$@
$(call db2omf_args
,$@
,$<,'docbook') ||
{ rm -f
"$@"; exit
1; }
186 ## The OMF files for HTML output
187 _DOC_OMF_HTML
= $(if
$(_DOC_OMF_IN
), \
188 $(foreach lc
,C
$(_DOC_REAL_LINGUAS
),$(DOC_MODULE
)-html-
$(lc
).omf
))
190 $(_DOC_OMF_HTML
) : $(_DOC_OMF_IN
)
191 $(_DOC_OMF_HTML
) : $(DOC_MODULE
)-html-
%.omf
: %/$(DOC_MODULE
).xml
193 @
test "x$(_ENABLE_SK)" != "xtrue" -o
-f
"$(_skcontentslist)" ||
{ \
194 echo
"The file '$(_skcontentslist)' does not exist" >&2; \
195 echo
"Please check your ScrollKeeper installation." >&2; \
198 xsltproc
-o
$@
$(call db2omf_args
,$@
,$<,'xhtml') ||
{ rm -f
"$@"; exit
1; }
201 ## All OMF output files to be built
204 $(if
$(filter docbook
,$(_DOC_REAL_FORMATS
)),$(_DOC_OMF_DB
)) \
205 $(if
$(filter html HTML
,$(_DOC_REAL_FORMATS
)),$(_DOC_OMF_HTML
))
211 ################################################################################
212 ## @@ C Locale Documents
215 ## The top-level documentation file in the C locale
216 _DOC_C_MODULE
= $(if
$(DOC_MODULE
),C
/$(DOC_MODULE
).xml
)
219 ## Page files in a Mallard document in the C locale
220 _DOC_C_PAGES
= $(foreach page
,$(DOC_PAGES
),C
/$(page
))
223 ## Files included with a SYSTEM entity in the C locale
224 _DOC_C_ENTITIES
= $(foreach ent
,$(DOC_ENTITIES
),C
/$(ent
))
226 ## @ _DOC_C_XINCLUDES
227 ## Files included with XInclude in the C locale
228 _DOC_C_INCLUDES
= $(foreach inc
,$(DOC_INCLUDES
),C
/$(inc
))
231 ## All documentation files in the C locale
233 $(_DOC_C_ENTITIES
) $(_DOC_C_INCLUDES
) \
234 $(_DOC_C_PAGES
) $(_DOC_C_MODULE
)
236 ## @ _DOC_C_DOCS_NOENT
237 ## All documentation files in the C locale,
238 ## except files included with a SYSTEM entity
239 _DOC_C_DOCS_NOENT
= \
240 $(_DOC_C_MODULE
) $(_DOC_C_INCLUDES
) \
244 ## All figures and other external data in the C locale
245 _DOC_C_FIGURES
= $(if
$(DOC_FIGURES
), \
246 $(foreach fig
,$(DOC_FIGURES
),C
/$(fig
)), \
247 $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/C
/figures
/*.png
)))
250 ## All HTML documentation in the C locale
251 # FIXME: probably have to shell escape to determine the file names
252 _DOC_C_HTML
= $(foreach f
, \
253 $(shell xsltproc
--xinclude \
254 --stringparam db.chunk.
basename "$(DOC_MODULE)" \
255 $(_chunks
) "C/$(DOC_MODULE).xml"), \
258 ###############################################################################
259 ## @@ Other Locale Documentation
262 ## The .po files used for translating the document
263 _DOC_POFILES
= $(if
$(DOC_MODULE
)$(DOC_ID
), \
264 $(foreach lc
,$(_DOC_REAL_LINGUAS
),$(lc
)/$(lc
).po
))
270 ## The .mo files used for translating the document
271 _DOC_MOFILES
= $(patsubst %.po
,%.mo
,$(_DOC_POFILES
))
277 ## The top-level documentation files in all other locales
278 _DOC_LC_MODULES
= $(if
$(DOC_MODULE
), \
279 $(foreach lc
,$(_DOC_REAL_LINGUAS
),$(lc
)/$(DOC_MODULE
).xml
))
282 ## Page files in a Mallard document in all other locales
284 $(foreach lc
,$(_DOC_REAL_LINGUAS
),$(foreach page
,$(_DOC_C_PAGES
), \
285 $(lc
)/$(notdir $(page
)) ))
287 ## @ _DOC_LC_XINCLUDES
288 ## Files included with XInclude in all other locales
290 $(foreach lc
,$(_DOC_REAL_LINGUAS
),$(foreach inc
,$(_DOC_C_INCLUDES
), \
291 $(lc
)/$(notdir $(inc
)) ))
294 ## All HTML documentation in all other locales
295 # FIXME: probably have to shell escape to determine the file names
297 $(foreach lc
,$(_DOC_REAL_LINGUAS
),$(foreach doc
,$(_DOC_C_HTML
), \
298 $(lc
)/$(notdir $(doc
)) ))
301 ## All documentation files in all other locales
303 $(_DOC_LC_MODULES
) $(_DOC_LC_INCLUDES
) $(_DOC_LC_PAGES
) \
304 $(if
$(filter html HTML
,$(_DOC_REAL_FORMATS
)),$(_DOC_LC_HTML
))
307 ## All figures and other external data in all other locales
308 _DOC_LC_FIGURES
= $(foreach lc
,$(_DOC_REAL_LINGUAS
), \
309 $(patsubst C
/%,$(lc
)/%,$(_DOC_C_FIGURES
)) )
312 $(foreach fig
,$(_DOC_C_FIGURES
), $(foreach lc
,C
$(_DOC_REAL_LINGUAS
), \
313 $(wildcard $(srcdir)/$(lc
)/$(patsubst C
/%,%,$(fig
))) ))
316 @if
! test -d
$(dir $@
); then \
317 echo
"mkdir $(dir $@)"; \
320 @if
test ! -f
$@
-a
-f
$(srcdir)/$@
; then \
321 echo
"cp $(srcdir)/$@ $@"; \
322 cp
"$(srcdir)/$@" "$@"; \
325 list
='$(_DOC_C_DOCS_NOENT)'; for doc in
$$list; do \
326 docs
="$$docs $(_DOC_ABS_SRCDIR)/$$doc"; \
328 if
! test -f
$@
; then \
329 echo
"(cd $(dir $@) && \
330 $(_xml2po) -m $(_xml2po_mode) -e $$docs > $(notdir $@).tmp && \
331 cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp)"; \
333 $(_xml2po
) -m
$(_xml2po_mode
) -e
$$docs > $(notdir $@
).tmp
&& \
334 cp
$(notdir $@
).tmp
$(notdir $@
) && rm -f
$(notdir $@
).tmp
); \
336 echo
"(cd $(dir $@) && \
337 $(_xml2po) -m $(_xml2po_mode) -e -u $(notdir $@) $$docs)"; \
339 $(_xml2po
) -m
$(_xml2po_mode
) -e
-u
$(notdir $@
) $$docs); \
342 $(_DOC_MOFILES
): %.mo
: %.po
343 @if
! test -d
$(dir $@
); then \
344 echo
"mkdir $(dir $@)"; \
349 # FIXME: fix the dependancy
350 # FIXME: hook xml2po up
351 $(_DOC_LC_DOCS
) : $(_DOC_MOFILES
)
352 $(_DOC_LC_DOCS
) : $(_DOC_C_DOCS
)
353 if
! test -d
$(dir $@
); then mkdir
$(dir $@
); fi
354 if
[ -f
"C/$(notdir $@)" ]; then d
="../"; else d
="$(_DOC_ABS_SRCDIR)/"; fi
; \
355 mo
="$(dir $@)$(patsubst %/$(notdir $@),%,$@).mo"; \
356 if
[ -f
"$${mo}" ]; then mo
="../$${mo}"; else mo
="$(_DOC_ABS_SRCDIR)/$${mo}"; fi
; \
358 $(_xml2po
) -m
$(_xml2po_mode
) -e
-t
"$${mo}" \
359 "$${d}C/$(notdir $@)" > $(notdir $@
).tmp
&& \
360 cp
$(notdir $@
).tmp
$(notdir $@
) && rm -f
$(notdir $@
).tmp
)
364 _DOC_POT
= $(if
$(DOC_MODULE
),$(DOC_MODULE
).pot
,$(if
$(DOC_ID
),$(DOC_ID
).pot
))
367 $(_DOC_POT
): $(_DOC_C_DOCS_NOENT
)
368 $(_xml2po
) -m
$(_xml2po_mode
) -e
-o
$@
$^
371 ################################################################################
372 ## @@ All Documentation
375 ## All HTML documentation, only if it's built
376 _DOC_HTML_ALL
= $(if
$(filter html HTML
,$(_DOC_REAL_FORMATS
)), \
377 $(_DOC_C_HTML
) $(_DOC_LC_HTML
))
379 _DOC_HTML_TOPS
= $(foreach lc
,C
$(_DOC_REAL_LINGUAS
),$(lc
)/$(DOC_MODULE
).xhtml
)
381 $(_DOC_HTML_TOPS
): $(_DOC_C_DOCS
) $(_DOC_LC_DOCS
)
382 xsltproc
-o
$@
--xinclude
--param db.chunk.chunk_top
"false()" --stringparam db.chunk.
basename "$(DOC_MODULE)" --stringparam db.chunk.extension
".xhtml" $(_db2html
) $(patsubst %.xhtml
,%.xml
,$@
)
385 ################################################################################
389 $(_DOC_C_DOCS
) $(_DOC_LC_DOCS
) \
390 $(_DOC_OMF_ALL
) $(_DOC_DSK_ALL
) \
391 $(_DOC_HTML_ALL
) $(_DOC_POFILES
)
394 ################################################################################
397 .PHONY
: clean-doc-omf clean-doc-dsk clean-doc-lc clean-doc-dir
399 clean-doc-omf
: ; rm -f
$(_DOC_OMF_DB
) $(_DOC_OMF_HTML
)
400 clean-doc-dsk
: ; rm -f
$(_DOC_DSK_DB
) $(_DOC_DSK_HTML
)
402 rm -f
$(_DOC_LC_DOCS
)
403 rm -f
$(_DOC_MOFILES
)
404 @list
='$(_DOC_POFILES)'; for po in
$$list; do \
405 if
! test "$$po" -ef
"$(srcdir)/$$po"; then \
410 # .xml2.po.mo cleaning is obsolete as of 0.18.1 and could be removed in 0.20.x
411 @for lc in C
$(_DOC_REAL_LINGUAS
); do \
412 if
test -f
"$$lc/.xml2po.mo"; then \
413 echo
"rm -f $$lc/.xml2po.mo"; \
414 rm -f
"$$lc/.xml2po.mo"; \
417 clean-doc-dir
: clean-doc-lc
418 @for lc in C
$(_DOC_REAL_LINGUAS
); do \
419 for
dir in
`find $$lc -depth -type d`; do \
420 if
! test $$dir -ef
$(srcdir)/$$dir; then \
421 echo
"rmdir $$dir"; \
427 _clean_omf
= $(if
$(_DOC_OMF_IN
),clean-doc-omf
)
428 _clean_dsk
= $(if
$(_DOC_DSK_IN
),clean-doc-dsk
)
429 _clean_lc
= $(if
$(_DOC_REAL_LINGUAS
),clean-doc-lc
)
430 _clean_dir
= $(if
$(DOC_MODULE
)$(DOC_ID
),clean-doc-dir
)
433 $(_clean_omf
) $(_clean_dsk
) \
434 $(_clean_lc
) $(_clean_dir
)
436 $(_clean_omf
) $(_clean_dsk
) \
437 $(_clean_lc
) $(_clean_dir
)
439 $(_clean_omf
) $(_clean_dsk
) \
440 $(_clean_lc
) $(_clean_dir
)
441 maintainer-clean-local
: \
442 $(_clean_omf
) $(_clean_dsk
) \
443 $(_clean_lc
) $(_clean_dir
)
447 ################################################################################
450 .PHONY
: dist-doc-docs dist-doc-pages dist-doc-figs dist-doc-omf dist-doc-dsk
452 $(if
$(DOC_MODULE
)$(DOC_ID
),dist-doc-docs
) \
453 $(if
$(_DOC_C_FIGURES
),dist-doc-figs
) \
454 $(if
$(_DOC_OMF_IN
),dist-doc-omf
)
455 # $(if $(_DOC_DSK_IN),dist-doc-dsk)
457 dist-doc-docs
: $(_DOC_C_DOCS
) $(_DOC_LC_DOCS
) $(_DOC_POFILES
)
458 @for lc in C
$(_DOC_REAL_LINGUAS
); do \
459 echo
" $(mkinstalldirs) $(distdir)/$$lc"; \
460 $(mkinstalldirs
) "$(distdir)/$$lc"; \
462 @list
='$(_DOC_C_DOCS) $(_DOC_LC_DOCS) $(_DOC_POFILES)'; \
463 for doc in
$$list; do \
464 if
test -f
"$$doc"; then d
=; else d
="$(srcdir)/"; fi
; \
465 docdir
=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
466 if
! test -d
"$(distdir)/$$docdir"; then \
467 echo
"$(mkinstalldirs) $(distdir)/$$docdir"; \
468 $(mkinstalldirs
) "$(distdir)/$$docdir"; \
470 echo
"$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \
471 $(INSTALL_DATA
) "$$d$$doc" "$(distdir)/$$doc"; \
474 dist-doc-figs
: $(_DOC_SRC_FIGURES
)
475 @list
='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; \
476 for fig in
$$list; do \
477 if
test -f
"$$fig"; then d
=; else d
="$(srcdir)/"; fi
; \
478 if
test -f
"$$d$$fig"; then \
479 figdir
=`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
480 if
! test -d
"$(distdir)/$$figdir"; then \
481 echo
"$(mkinstalldirs) $(distdir)/$$figdir"; \
482 $(mkinstalldirs
) "$(distdir)/$$figdir"; \
484 echo
"$(INSTALL_DATA) $$d$$fig $(distdir)/$$fig"; \
485 $(INSTALL_DATA
) "$$d$$fig" "$(distdir)/$$fig"; \
490 @if
test -f
"$(_DOC_OMF_IN)"; then d
=; else d
="$(srcdir)/"; fi
; \
491 echo
"$(INSTALL_DATA) $$d$(_DOC_OMF_IN) $(distdir)/$(notdir $(_DOC_OMF_IN))"; \
492 $(INSTALL_DATA
) "$$d$(_DOC_OMF_IN)" "$(distdir)/$(notdir $(_DOC_OMF_IN))"
495 @if
test -f
"$(_DOC_DSK_IN)"; then d
=; else d
="$(srcdir)/"; fi
; \
496 echo
"$(INSTALL_DATA) $$d$(_DOC_DSK_IN) $(distdir)/$(notdir $(_DOC_DSK_IN))"; \
497 $(INSTALL_DATA
) "$$d$(_DOC_DSK_IN)" "$(distdir)/$(notdir $(_DOC_DSK_IN))"
501 ################################################################################
504 .PHONY
: check-doc-docs check-doc-omf
506 $(if
$(DOC_MODULE
),check-doc-docs
) \
507 $(if
$(DOC_ID
),check-doc-pages
) \
508 $(if
$(_DOC_OMF_IN
),check-doc-omf
)
510 check-doc-docs
: $(_DOC_C_DOCS
) $(_DOC_LC_DOCS
)
511 @for lc in C
$(_DOC_REAL_LINGUAS
); do \
517 xmlpath
="$$lc:$(srcdir)/$$lc"; \
519 echo
"xmllint --noout --noent --path $$xmlpath --xinclude --postvalid $$d$$lc/$(DOC_MODULE).xml"; \
520 xmllint
--noout
--noent
--path
"$$xmlpath" --xinclude
--postvalid
"$$d$$lc/$(DOC_MODULE).xml"; \
523 check-doc-pages
: $(_DOC_C_PAGES
) $(_DOC_LC_PAGES
)
524 for lc in C
$(_DOC_REAL_LINGUAS
); do \
530 xmlpath
="$$lc:$(srcdir)/$$lc"; \
532 for page in
$(DOC_PAGES
); do \
533 echo
"xmllint --noout --noent --path $$xmlpath --xinclude --relaxng $(_malrng) $$d$$lc/$$page"; \
534 xmllint
--noout
--noent
--path
"$$xmlpath" --xinclude
--relaxng
"$(_malrng)" "$$d$$lc/$$page"; \
538 check-doc-omf
: $(_DOC_OMF_ALL
)
539 @list
='$(_DOC_OMF_ALL)'; for omf in
$$list; do \
540 echo
"xmllint --noout --xinclude --dtdvalid 'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf"; \
541 xmllint
--noout
--xinclude
--dtdvalid
'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf; \
546 ################################################################################
549 .PHONY
: install-doc-docs install-doc-html install-doc-figs install-doc-omf install-doc-dsk
551 _doc_install_dir
= $(if
$(DOC_ID
),$(DOC_ID
),$(DOC_MODULE
))
553 install-data-local
: \
554 $(if
$(DOC_MODULE
)$(DOC_ID
),install-doc-docs
) \
555 $(if
$(_DOC_HTML_ALL
),install-doc-html
) \
556 $(if
$(_DOC_C_FIGURES
),install-doc-figs
) \
557 $(if
$(_DOC_OMF_IN
),install-doc-omf
)
558 # $(if $(_DOC_DSK_IN),install-doc-dsk)
561 @for lc in C
$(_DOC_REAL_LINGUAS
); do \
562 echo
"$(mkinstalldirs) $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$lc"; \
563 $(mkinstalldirs
) $(DESTDIR
)$(HELP_DIR
)/$(_doc_install_dir
)/$$lc; \
565 @list
='$(_DOC_C_DOCS) $(_DOC_LC_DOCS)'; for doc in
$$list; do \
566 if
test -f
"$$doc"; then d
=; else d
="$(srcdir)/"; fi
; \
567 docdir
="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
568 docdir
="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$docdir"; \
569 if
! test -d
"$$docdir"; then \
570 echo
"$(mkinstalldirs) $$docdir"; \
571 $(mkinstalldirs
) "$$docdir"; \
573 echo
"$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \
574 $(INSTALL_DATA
) $$d$$doc $(DESTDIR
)$(HELP_DIR
)/$(_doc_install_dir
)/$$doc; \
578 @list
='$(patsubst C/%,%,$(_DOC_C_FIGURES))'; for fig in
$$list; do \
579 for lc in C
$(_DOC_REAL_LINGUAS
); do \
581 if
test -f
"$$lc/$$fig"; then \
582 figfile
="$$lc/$$fig"; \
583 elif
test -f
"$(srcdir)/$$lc/$$fig"; then \
584 figfile
="$(srcdir)/$$lc/$$fig"; \
588 figdir
="$$lc/"`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
589 figdir
="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$figdir"; \
590 if
! test -d
"$$figdir"; then \
591 echo
"$(mkinstalldirs) $$figdir"; \
592 $(mkinstalldirs
) "$$figdir"; \
594 figbase
=`echo $$fig | sed -e 's/^.*\///'`; \
595 if
$$figsymlink; then \
596 echo
"cd $$figdir && $(LN_S) -f ../../C/$$fig $$figbase"; \
597 ( cd
"$$figdir" && $(LN_S
) -f
"../../C/$$fig" "$$figbase" ); \
599 echo
"$(INSTALL_DATA) $$figfile $$figdir$$figbase"; \
600 $(INSTALL_DATA
) "$$figfile" "$$figdir$$figbase"; \
609 $(mkinstalldirs
) $(DESTDIR
)$(OMF_DIR
)/$(_doc_install_dir
)
610 @list
='$(_DOC_OMF_ALL)'; for omf in
$$list; do \
611 echo
"$(INSTALL_DATA) $$omf $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \
612 $(INSTALL_DATA
) $$omf $(DESTDIR
)$(OMF_DIR
)/$(_doc_install_dir
)/$$omf; \
614 @if
test "x$(_ENABLE_SK)" = "xtrue"; then \
615 echo
"scrollkeeper-update -p $(DESTDIR)$(_sklocalstatedir) -o $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \
616 scrollkeeper-update
-p
"$(DESTDIR)$(_sklocalstatedir)" -o
"$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \
624 ################################################################################
627 .PHONY
: uninstall-doc-docs uninstall-doc-html uninstall-doc-figs uninstall-doc-omf uninstall-doc-dsk
629 $(if
$(DOC_MODULE
)$(DOC_ID
),uninstall-doc-docs
) \
630 $(if
$(_DOC_HTML_ALL
),uninstall-doc-html
) \
631 $(if
$(_DOC_C_FIGURES
),uninstall-doc-figs
) \
632 $(if
$(_DOC_OMF_IN
),uninstall-doc-omf
)
633 # $(if $(_DOC_DSK_IN),uninstall-doc-dsk)
636 @list
='$(_DOC_C_DOCS) $(_DOC_LC_DOCS)'; for doc in
$$list; do \
637 echo
" rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \
638 rm -f
"$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \
642 @list
='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; for fig in
$$list; do \
643 echo
"rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \
644 rm -f
"$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \
648 @list
='$(_DOC_OMF_ALL)'; for omf in
$$list; do \
649 if
test "x$(_ENABLE_SK)" = "xtrue"; then \
650 echo
"scrollkeeper-uninstall -p $(_sklocalstatedir) $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \
651 scrollkeeper-uninstall
-p
"$(_sklocalstatedir)" "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \
653 echo
"rm -f $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \
654 rm -f
"$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \