doxygen support added.
This commit is contained in:
@@ -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
@@ -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
@@ -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
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
Reference in New Issue
Block a user