From df83b714395d41b096f7ad8cc3a090c9341f7598 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Fri, 11 Oct 2013 00:12:43 +0300 Subject: Initial commit --- Makefile.am | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..221d1c0 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,28 @@ +# This file is part of vmod-binlog +# Copyright (C) 2013 Sergey Poznyakoff +# +# Vmod-binlog is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# Vmod-binlog is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with vmod-sql. If not, see . +ACLOCAL_AMFLAGS = -I m4 + +SUBDIRS = src #doc tests + +EXTRA_DIST=git2chg.awk + +.PHONY: ChangeLog +ChangeLog: + $(AM_V_GEN)if test -d .git; then \ + git log --pretty='format:%ct %an <%ae>%n%n%s%n%n%b%n' | \ + awk -f $(top_srcdir)/git2chg.awk > ChangeLog; \ + fi + -- cgit v1.2.1