author | Michael Krelin <hacker@klever.net> | 2007-11-24 11:37:34 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-11-24 11:37:34 (UTC) |
commit | 0b182f35dd133f40adcf95cd57f636102b4a2188 (patch) (side-by-side diff) | |
tree | 947b4bd6a102f2ec1706541e2dd4e88d2b8c1211 | |
parent | 70f85314fcd188a182aae3a4291c0cd95ba16ee2 (diff) | |
download | libopkele-0b182f35dd133f40adcf95cd57f636102b4a2188.zip libopkele-0b182f35dd133f40adcf95cd57f636102b4a2188.tar.gz libopkele-0b182f35dd133f40adcf95cd57f636102b4a2188.tar.bz2 |
added "issue tracker" target to toplevel Makefile.am
Signed-off-by: Michael Krelin <hacker@klever.net>
-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 @@ -9,12 +9,19 @@ all-local: NEWS if HAVE_DOXYGEN clean-local: rm -rf doxydox endif NEWS: NEWS.xsl NEWS.xml ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml if HAVE_DOXYGEN dox: Doxyfile ${DOXYGEN} endif + +ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ + -name '*.cc' -or -name '*.h' \ + ')' ) +issues: todo fixme xxx +todo fixme xxx: + @grep --color=auto -in '$@:' ${ISSUEFILES} || true |