diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-01-20 13:36:33 -0600 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-01-21 14:48:43 -0600 |
commit | a50ba779ff3e0a5d4f35fb2b6ab525a423575cc4 (patch) | |
tree | 0ba036aa541c3a243effbb50e7ff79c89bf4709f /Makefile.am |
Initial implementation of p11-unity
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..df12be0 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,18 @@ + +SUBDIRS = module + +ACLOCAL_AMFLAGS = -I m4 + +dist-hook: + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generate automatically. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo A git clone is required to generate a ChangeLog >&2; \ + fi |