gtk/docs/faq/Makefile.am
Owen Taylor e81022da91 Build the docbook version, not the old linuxdoc version.
Tue Mar  5 16:53:05 2002  Owen Taylor  <otaylor@redhat.com>

        * docs/faq/Makefile.am: Build the docbook version, not
        the old linuxdoc version.
2002-03-05 21:57:08 +00:00

31 lines
450 B
Makefile

if HAVE_DOCBOOK
html:
(cd $(srcdir); \
db2html gtk-faq.sgml; \
mv gtk-faq html)
pdf:
(cd $(srcdir); db2pdf gtk-faq.sgml)
dist-hook: html
cp -Rp $(srcdir)/html $(distdir)
else
html:
echo "***"
echo "*** Warning: FAQ not built"
echo "***"
pdf:
echo "***"
echo "*** Warning: FAQ not built"
echo "***"
dist-hook:
echo "***"
echo "*** Warning: Tutorial not built"
echo "*** DISTRIBUTION IS INCOMPLETE"
echo "***"
endif
.PHONY: html