Skip to content
Snippets Groups Projects
Commit d0f97dfa authored by Julien Signoles's avatar Julien Signoles
Browse files

fix doxygen issues in Makefile & configure

parent 233f1943
No related branches found
No related tags found
No related merge requests found
...@@ -280,14 +280,16 @@ $(E_ACSL_DIR)/Makefile: $(E_ACSL_DIR)/Makefile.in $(CONFIG_STATUS_DIR_DEP) ...@@ -280,14 +280,16 @@ $(E_ACSL_DIR)/Makefile: $(E_ACSL_DIR)/Makefile.in $(CONFIG_STATUS_DIR_DEP)
cd $(CONFIG_STATUS_DIR) && ./config.status cd $(CONFIG_STATUS_DIR) && ./config.status
##################################### #####################################
# Doxygen # # Doxygen #
##################################### #####################################
DOXYGEN = @DOXYGEN@ DOXYGEN = @DOXYGEN@
doxygen: doxygen:
if ! test $(DOXYGEN) = "no"; then \ if ! test $(DOXYGEN) = "no"; then \
$(DOXYGEN) doc/doxygen/doxygen.cfg ; \ $(DOXYGEN) $(E_ACSL_DIR)/doc/doxygen/doxygen.cfg ; \
else \ else \
echo "Warning: Skip doxygen documentation: Doxygen executable not found."; \ echo "Warning: Skip doxygen documentation: \
Doxygen executable not found."; \
fi fi
doc:: doxygen doc:: doxygen
\ No newline at end of file
...@@ -108,9 +108,10 @@ fi ...@@ -108,9 +108,10 @@ fi
# Doxygen # Doxygen
######### #########
AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no) AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
AC_CHECK_PROG(HAVE_DOT,dot,YES,no) AC_CHECK_PROG(HAVE_DOT,dot,YES,no)
AC_OUTPUT([ doc/doxygen/doxygen.cfg ], [ ]) AC_OUTPUT([ PLUGIN_RELATIVE_PATH(doc/doxygen/doxygen.cfg) ], [ ])
####################### #######################
# Generating Makefile # # Generating Makefile #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment