summaryrefslogtreecommitdiff
path: root/doc/faq/Makefile.am
blob: f6fc1dd10146b9e6e19f8e7ed8873afe89f1e76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
include $(top_srcdir)/misc/Makefile.quiet
include $(top_srcdir)/misc/Makefile.common

doc_DATA = faq.txt
html_DATA = faq.html

EXTRA_DIST = README faq.docbook faq.xsl $(doc_DATA) $(html_DATA)

DISTCLEANFILES = $(doc_DATA) $(html_DATA)

docs: $(hackersguide_DATA)

clean-docs:
	rm -f $(hackersguide_DATA)

dist-hook:
	@if test x"$(distcheck_lax)" = x ; then \
	  $(MAKE) fail_if_missing=yes docs ; \
	else \
	  $(MAKE) docs ; \
	fi

distclean-local: clean-docs

if HAVE_XMLTO
faq.html: faq.docbook faq.xsl
	xmlto -m faq.xsl xhtml-nochunks $<
faq.txt: faq.docbook faq.xsl
	xmlto -m faq.xsl txt $<
else
faq.html faq.txt: faq.docbook
	if test x"$(fail_if_missing)" = x"yes"; then \
	  echo "Please install xmlto."; \
	  exit 1; \
	fi
	if test x"$(fail_if_missing)" != x"yes"; then \
	  touch $@; \
	  sleep 1; \
	  touch $^; \
	fi
endif