-rw-r--r-- | Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..fb3b5f3 --- a/dev/null +++ b/Makefile.am | |||
@@ -0,0 +1,16 @@ | |||
1 | SUBDIRS=doc src | ||
2 | |||
3 | all-local: NEWS | ||
4 | |||
5 | NEWS: NEWS.xsl NEWS.xml | ||
6 | ${XSLTPROC} -o $@ $^ | ||
7 | |||
8 | EXTRA_DIST = NEWS.xml NEWS.xsl | ||
9 | |||
10 | ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ | ||
11 | -name '*.cc' -or -name '*.h' \ | ||
12 | ')' ) \ | ||
13 | ${top_srcdir}/configure.ac | ||
14 | issues: todo fixme xxx | ||
15 | todo fixme xxx: | ||
16 | @grep --color=auto -in '$@:' ${ISSUEFILES} || true | ||