|
From: <zw...@ma...> - 2009-05-23 22:29:59
|
Author: zwelch Date: 2009-05-23 22:29:53 +0200 (Sat, 23 May 2009) New Revision: 1891 Modified: trunk/Makefile.am Log: Fix make docs rule to work with out-of-tree builds. Modified: trunk/Makefile.am =================================================================== --- trunk/Makefile.am 2009-05-23 18:26:06 UTC (rev 1890) +++ trunk/Makefile.am 2009-05-23 20:29:53 UTC (rev 1891) @@ -16,7 +16,7 @@ docs: pdf html doxygen doxygen:: - doxygen Doxyfile 2>&1 | perl tools/logger.pl > doxygen.log + (cd $(srcdir) && doxygen Doxyfile 2>&1 | perl tools/logger.pl ) > doxygen.log doxygen-clean: rm -f -r doxygen doxygen.log |