- Timestamp:
- Aug 6, 2008, 7:56:39 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r1371 r1397 81 81 82 82 [http://www.doxygen.org/ Doxygen] is required for generation of the 83 API documentation 83 API documentation. Doxygen uses a number of applications, epstopdf, 84 latex, makeindex, and pdflatex. If any of these applications are 85 missing, generation of API documentation is disabled. 84 86 85 87 = Documentation = -
trunk/configure.ac
r1394 r1397 59 59 AC_PROG_INSTALL 60 60 AC_PROG_SED 61 AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [true], [false]) 62 63 AM_CONDITIONAL(HAVE_DOXYGEN, test "$HAVE_DOXYGEN" = "true") 61 62 AC_MSG_NOTICE([checking whether tools for generating documentation is available]) 63 have_dox_tools="yes" 64 AC_PATH_PROG([DOXYGEN], [doxygen], [no]) 65 if test "$DOXYGEN" = "no"; then 66 AC_MSG_WARN([unable to find doxygen application]) 67 have_dox_tools=no 68 fi 69 AC_CHECK_PROG([have_epstopdf], [epstopdf], [yes], [no]) 70 if test "$have_epstopdf" != "yes"; then 71 AC_MSG_WARN([unable to find epstopdf application]) 72 have_dox_tools=no 73 fi 74 AC_CHECK_PROG([have_latex], [latex], [yes], [no]) 75 if test "$have_latex" != "yes"; then 76 AC_MSG_WARN([unable to find latex application]) 77 fi 78 AC_CHECK_PROG([have_makeindex], [makeindex], [yes], [no]) 79 if test "$have_makeindex" != "yes"; then 80 AC_MSG_WARN([unable to find makeindex application]) 81 have_dox_tools=no 82 fi 83 AC_CHECK_PROG([have_pdflatex], [pdflatex], [yes], [no]) 84 if test "$have_pdflatex" != "yes"; then 85 AC_MSG_WARN([unable to find pdflatex application]) 86 have_dox_tools=no 87 fi 88 89 AM_CONDITIONAL(HAVE_DOXYGEN, test "$have_dox_tools" = "yes") 64 90 AC_CONFIG_FILES([test/documentation_test.sh], 65 91 [chmod +x test/documentation_test.sh]) … … 229 255 230 256 # warning about missing doxygen 231 if (test "$HAVE_DOXYGEN" != "true") ; then 232 AC_MSG_WARN([ 233 Doxygen was not found. Yat will compile and work without doxygen. 234 However, in order to enable generation of documentation, please 235 install Doxygen available at http://www.doxygen.org/ 257 if (test "$HAVE_DOX_TOOLS" != "yes") ; then 258 AC_MSG_WARN([ 259 Some pre-requisites for generating documentation were not 260 fulfilled. The build will not create any documentation. 261 Please consult the 'README' file for more information about 262 what is needed to generate documentation and refer to above 263 warning messages. 236 264 ]) 237 265 fi -
trunk/doc/Makefile.am
r1347 r1397 69 69 70 70 $(DX_HTML_OUTPUT)/index.html: Makefile doxygen.config stamp-doxygen 71 @(cat doxygen.config; $(ECHO) GENERATE_HTML = YES) | doxygen-;71 @(cat doxygen.config; $(ECHO) GENERATE_HTML = YES) | $(DOXYGEN) -; 72 72 73 73 $(DX_LATEX_OUTPUT)/refman.tex: Makefile doxygen.config stamp-doxygen 74 @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | doxygen-;74 @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | $(DOXYGEN) -; 75 75 76 76 $(PACKAGE).dvi: $(DX_LATEX_OUTPUT)/refman.tex
Note: See TracChangeset
for help on using the changeset viewer.