forked from AuroraMiddleware/gtk
81538dec03
Tue Mar 5 22:16:58 2002 Owen Taylor <otaylor@redhat.com> * GTK+-2.0.0 rc1 * docs/tutorial,faq/Makefile.am: Deal with the html directory already being there. * docs/faq/Makefile.am (EXTRA_DIST): Add gtk-faq.sgml to EXTRA_DIST.
35 lines
515 B
Makefile
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
|