doxygen support added.

This commit is contained in:
Roland Jax
2014-11-21 20:40:54 +01:00
parent 6b19680b61
commit 8e37591ca7
5 changed files with 2309 additions and 2 deletions
+10 -1
View File
@@ -28,7 +28,16 @@ AC_CONFIG_FILES([Makefile
src/lib/ebus/Makefile
src/lib/ebus/test/Makefile
src/ebusd/Makefile
src/ebusctl/Makefile])
src/ebusctl/Makefile
docs/Makefile])
AC_CHECK_PROGS([HAVE_DOXYGEN], [doxygen])
if test -z "$HAVE_DOXYGEN";
then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support.])
fi
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$HAVE_DOXYGEN"])
AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([docs/Doxyfile])])
AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign])