summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-01-20 13:36:33 -0600
committerStef Walter <stefw@collabora.co.uk>2011-01-21 14:48:43 -0600
commita50ba779ff3e0a5d4f35fb2b6ab525a423575cc4 (patch)
tree0ba036aa541c3a243effbb50e7ff79c89bf4709f /Makefile.am
downloadp11-kit-a50ba779ff3e0a5d4f35fb2b6ab525a423575cc4.tar.gz
Initial implementation of p11-unity
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am18
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