# Process this file with autoconf to produce a configure script. AC_INIT(Doxyfile) AM_INIT_AUTOMAKE(libspiff, 0.8.0-doc) dnl // Doxygen AC_CHECK_PROG(DOXY_CHECK, doxygen, found, missing) if test ${DOXY_CHECK} != "found" ; then AC_MSG_ERROR([Please install Doxygen first.]) fi dnl // Graphviz AC_CHECK_PROG(GRAPHVIZ_CHECK, dot, found, missing) if test ${GRAPHVIZ_CHECK} != "found" ; then AC_MSG_ERROR([Please install Graphviz first.]) fi AC_OUTPUT(Makefile)