Changeset 2250


Ignore:
Timestamp:
May 15, 2010, 6:13:11 PM (13 years ago)
Author:
Peter
Message:

fixed a doc typo and fixed lazy dependencies for documentation_test. Previously documentation_test did not depend on *.doxygen files - now we always run the test and let the logic for 'make doc' take care of whether doxygen will run or not.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/concepts.doxygen

    r2249 r2250  
    154154<td>Element Access</td>
    155155<td><tt>a(size_t row, size_t column)</tt></td>
    156 <td><tt>0 &lt;= row&lt;a.rows()</tt> and
     156<td><tt>0 &lt;= row &lt; a.rows()</tt> and
    157157<tt>0 &lt;= column &lt; a.columns()</tt></td>
    158158<td><tt>const_reference</tt></td>
  • trunk/test/Makefile.am

    r2245 r2250  
    113113yat_m4_test2.log:$(top_srcdir)/m4/yat.m4 common_defs.sh
    114114
    115 ## we wanna rerun documentation_test if a header file has
    116 ## changed. Depending on libyat should cover all those cases. When
    117 ## libyat has beed recreated due to source changes and not header file
    118 ## changes the documentation_test is very cheap anyway since 'make
    119 ## doc' will do nothing.
    120 documentation_test.log: $(top_builddir)/yat/libyat.la
     115## We always rerun documentation_test. When sources for doxygen have
     116## not changed and a rerun would not be needed, the test is very
     117## inexpensive because 'make doc' will not run anything, in other
     118## words, we always run the test but let the logic for 'make doc' take
     119## care of whether doxygen will run or not.
     120documentation_test.log: FORCE
Note: See TracChangeset for help on using the changeset viewer.