author | Michael Krelin <hacker@klever.net> | 2007-11-24 12:01:39 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-11-24 12:01:39 (UTC) |
commit | ef66d79bf58f099179a932ca80d07ca93a42909c (patch) (unidiff) | |
tree | c76c284ac9066dafd6de3292eddb08e51eb7039d | |
parent | 0b182f35dd133f40adcf95cd57f636102b4a2188 (diff) | |
download | libopkele-ef66d79bf58f099179a932ca80d07ca93a42909c.zip libopkele-ef66d79bf58f099179a932ca80d07ca93a42909c.tar.gz libopkele-ef66d79bf58f099179a932ca80d07ca93a42909c.tar.bz2 |
added 'configure.ac' to the list of "issue-enabled" files
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 603a2b8..3227bdb 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -1,27 +1,28 @@ | |||
1 | 1 | ||
2 | SUBDIRS=include lib test | 2 | SUBDIRS=include lib test |
3 | EXTRA_DIST= NEWS NEWS.xml NEWS.xsl | 3 | EXTRA_DIST= NEWS NEWS.xml NEWS.xsl |
4 | 4 | ||
5 | pkgconfigdir=${libdir}/pkgconfig | 5 | pkgconfigdir=${libdir}/pkgconfig |
6 | pkgconfig_DATA=libopkele.pc | 6 | pkgconfig_DATA=libopkele.pc |
7 | 7 | ||
8 | all-local: NEWS | 8 | all-local: NEWS |
9 | if HAVE_DOXYGEN | 9 | if HAVE_DOXYGEN |
10 | clean-local: | 10 | clean-local: |
11 | rm -rf doxydox | 11 | rm -rf doxydox |
12 | endif | 12 | endif |
13 | 13 | ||
14 | NEWS: NEWS.xsl NEWS.xml | 14 | 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 | 21 | ||
22 | ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ | 22 | ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ |
23 | -name '*.cc' -or -name '*.h' \ | 23 | -name '*.cc' -or -name '*.h' \ |
24 | ')' ) | 24 | ')' ) \ |
25 | ${top_srcdir}/configure.ac | ||
25 | issues: todo fixme xxx | 26 | issues: todo fixme xxx |
26 | todo fixme xxx: | 27 | todo fixme xxx: |
27 | @grep --color=auto -in '$@:' ${ISSUEFILES} || true | 28 | @grep --color=auto -in '$@:' ${ISSUEFILES} || true |