diff -r 994c7df296c9 -r 1b89e29c9fc7 doc/Makefile.am --- a/doc/Makefile.am Thu Dec 10 17:05:35 2009 +0100 +++ b/doc/Makefile.am Thu Dec 10 17:18:25 2009 +0100 @@ -66,7 +66,19 @@ exit 1; \ fi -html-local: $(DOC_PNG_IMAGES) +references.dox: doc/references.bib + if test ${python_found} = yes; then \ + cd doc; \ + python @abs_top_srcdir@/scripts/bib2dox.py @abs_top_builddir@/$< >$@; \ + cd ..; \ + else \ + echo; \ + echo "Python not found."; \ + echo; \ + exit 1; \ + fi + +html-local: $(DOC_PNG_IMAGES) references.dox if test ${doxygen_found} = yes; then \ cd doc; \ doxygen Doxyfile; \