fix doxygen m4 macro (make it more efl-ish and fix a bug)

SVN revision: 36552
This commit is contained in:
Vincent Torri 2008-10-09 20:16:41 +00:00
parent bc2268e0e0
commit 5063c86f4f
3 changed files with 4 additions and 4 deletions

View File

@ -211,8 +211,6 @@ AC_PROG_CC
EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"])
AM_CONDITIONAL(EINA_BUILD_DOC, test "x${build_doc}" = "xyes")
### Checks for types

View File

@ -3,7 +3,7 @@ MAINTAINERCLEANFILES = Makefile.in
.PHONY: doc
if EINA_BUILD_DOC
if EFL_BUILD_DOC
doc: all
rm -rf html/ latex/ man/

View File

@ -69,7 +69,9 @@ AC_ARG_WITH([doxygen],
dnl
dnl Substitution
dnl
AC_SUBST([DOXYGEN])
AC_SUBST([${DOXYGEN]])
AM_CONDITIONAL(EFL_BUILD_DOC, test "x${BUILD_DOCS}" = "xyes")
if test "x${BUILD_DOCS}" = "xyes" ; then
ifelse([$1], , :, [$1])