gpgme-tool: Use membuf functions to build up strings.
[gpgme.git] / Makefile.am
1 # Makefile.am - Top level Makefile for GPGME.
2 # Copyright (C) 2000 Werner Koch (dd9jn)
3 # Copyright (C) 2001, 2002, 2004, 2005, 2008, 2009 g10 Code GmbH
4 #
5 # This file is part of GPGME.
6 #
7 # GPGME is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as
9 # published by the Free Software Foundation; either version 2.1 of the
10 # License, or (at your option) any later version.
11 #
12 # GPGME is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
15 # Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this program; if not, see <http://www.gnu.org/licenses/>.
19
20 ## Process this file with automake to produce Makefile.in
21
22 ACLOCAL_AMFLAGS = -I m4
23 AUTOMAKE_OPTIONS = dist-bzip2
24
25 DISTCHECK_CONFIGURE_FLAGS = --with-gpg="@GPG@"
26
27 EXTRA_DIST = gpgme.spec.in autogen.sh                                   \
28              ChangeLog-2011 m4/ChangeLog-2011 contrib/ChangeLog-2011
29
30
31 if RUN_GPG_TESTS
32 tests = tests
33 else
34 tests =
35 endif
36
37 SUBDIRS = src ${tests} doc lang
38
39 # Fix the version of the spec file and create a file named VERSION
40 # to be used for patch's Prereq: feature.
41 dist-hook: gen-ChangeLog
42         @set -e; \
43         sed -e 's/@pkg_version@/$(VERSION)/g' \
44             $(top_srcdir)/gpgme.spec.in  > $(distdir)/gpgme.spec
45         echo "$(VERSION)" > $(distdir)/VERSION
46
47
48 gen_start_date = 2011-12-01T00:00:00
49 .PHONY: gen-ChangeLog
50 gen-ChangeLog:
51         if test -d $(top_srcdir)/.git; then                             \
52           (cd $(top_srcdir) &&                                          \
53             $(GITLOG_TO_CHANGELOG) --append-dot --tear-off              \
54             --amend=build-aux/git-log-fix                               \
55             --since=$(gen_start_date) ) > $(distdir)/cl-t;              \
56           cat $(top_srcdir)/build-aux/git-log-footer >> $(distdir)/cl-t;\
57           rm -f $(distdir)/ChangeLog;                                   \
58           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
59         fi