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
+3
View File
@@ -23,3 +23,6 @@ Makefile.in
/src/lib/ebus/test/test_encode
/src/lib/ebus/test/test_symbol
/src/lib/ebus/test/test_data
/docs/Doxyfile
/docs/doxyfile.stamp
/docs/html
+1 -1
View File
@@ -1,4 +1,4 @@
SUBDIRS = src/lib/utils src/lib/ebus src/lib/ebus/test src/ebusd src/ebusctl
SUBDIRS = src/lib/utils src/lib/ebus src/lib/ebus/test src/ebusd src/ebusctl docs
distclean-local:
-rm -rf autom4te.cache
+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])
+2280
View File
File diff suppressed because it is too large Load Diff
+15
View File
@@ -0,0 +1,15 @@
if HAVE_DOXYGEN
doxyfile.stamp:
$(HAVE_DOXYGEN) Doxyfile
echo Timestamp > doxyfile.stamp
CLEANFILES = doxyfile.stamp
all-local: doxyfile.stamp
distclean-local:
-rm -f Makefile.in
-rm -rf html
endif