Files
gtk/docs/faq/Makefile.am
Erwann Chenede d01a255508 (06/03/02) Erwann Chenede - <erwann.chenede@sun.com>
* Merged gtk GTK_2_0_0_RC1 with the gtk-multihead branch.
2002-03-06 17:32:06 +00:00

35 lines
515 B
Makefile

EXTRA_DIST = \
gtk-faq.sgml
if HAVE_DOCBOOK
html:
(cd $(srcdir); \
db2html gtk-faq.sgml; \
test -d html && rm -r html; \
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