blob: 4a5c2f6f99961ced6c8bea61ef6ca09c66f2ee9b (
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
42
43
44
45
|
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
AM_V_FAKE = $(am__v_FAKE_$(V))
am__v_FAKE_ = $(am__v_FAKE_$(AM_DEFAULT_VERBOSITY))
am__v_FAKE_0 = @echo " FAKE " $@;
if HAVE_XMLTO
faq.html: faq.docbook faq.xsl
$(AM_V_GEN)xmlto -m faq.xsl xhtml-nochunks $<
faq.txt: faq.docbook faq.xsl
$(AM_V_GEN)xmlto -m faq.xsl txt $<
else
faq.html faq.txt: faq.docbook
$(AM_V_FAKE)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
|