]> Pileus Git - ~andy/gtk/blob - docs/faq/Makefile.am
call g_test_init() from gtk_test_init().
[~andy/gtk] / docs / faq / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 EXTRA_DIST +=                   \
4         gtk-faq.sgml
5
6 if HAVE_DOCBOOK
7 html:
8         if test -w $(srcdir); then \
9           (cd $(srcdir); \
10            db2html gtk-faq.sgml; \
11            test -d html && rm -r html; \
12            mv gtk-faq html); \
13         fi
14
15 pdf:
16         if test -w $(srcdir); then \
17           (cd $(srcdir); db2pdf gtk-faq.sgml); \
18         fi
19
20 dist-hook: html
21         cp -Rp $(srcdir)/html $(distdir)
22 else
23 html:
24         echo "***"
25         echo "*** Warning: FAQ not built"
26         echo "***"
27
28 pdf:
29         echo "***"
30         echo "*** Warning: FAQ not built"
31         echo "***"
32
33 dist-hook:
34         echo "***"
35         echo "*** Warning: FAQ not built"
36         echo "*** DISTRIBUTION IS INCOMPLETE"
37         echo "***"
38 endif
39
40 .PHONY: html