author | Michael Krelin <hacker@klever.net> | 2008-04-05 11:17:33 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-04-05 11:17:33 (UTC) |
commit | 04fb190243442e83349f129b523ab747e58100bf (patch) (unidiff) | |
tree | ddc28357fbe78b07fd3a5e0aa8088130bf305829 /Makefile.am | |
download | napkin-04fb190243442e83349f129b523ab747e58100bf.zip napkin-04fb190243442e83349f129b523ab747e58100bf.tar.gz napkin-04fb190243442e83349f129b523ab747e58100bf.tar.bz2 |
Initial commit into public repository0.0
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..c3bc31f --- a/dev/null +++ b/Makefile.am | |||
@@ -0,0 +1,15 @@ | |||
1 | SUBDIRS=include lib src test | ||
2 | EXTRA_DIST = NEWS NEWS.xml NEWS.xsl | ||
3 | |||
4 | all-local: NEWS | ||
5 | |||
6 | NEWS: NEWS.xsl NEWS.xml | ||
7 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml | ||
8 | |||
9 | ISSUEFILES = $$(find ${top_srcdir} -type f '(' \ | ||
10 | -name '*.cc' -or -name '*.h' -or -name '*.sql' \ | ||
11 | ')' ) \ | ||
12 | ${top_srcdir}/configure.ac | ||
13 | issues: todo fixme xxx | ||
14 | todo fixme xxx: | ||
15 | @grep --color=auto -in '$@:' ${ISSUEFILES} || true | ||