-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 638d6af..603a2b8 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -15,6 +15,13 @@ NEWS: NEWS.xsl NEWS.xml | |||
15 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml | 15 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml |
16 | 16 | ||
17 | if HAVE_DOXYGEN | 17 | if HAVE_DOXYGEN |
18 | dox: Doxyfile | 18 | dox: Doxyfile |
19 | ${DOXYGEN} | 19 | ${DOXYGEN} |
20 | endif | 20 | endif |
21 | |||
22 | ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ | ||
23 | -name '*.cc' -or -name '*.h' \ | ||
24 | ')' ) | ||
25 | issues: todo fixme xxx | ||
26 | todo fixme xxx: | ||
27 | @grep --color=auto -in '$@:' ${ISSUEFILES} || true | ||