Imported Upstream version 2.1.10
[platform/upstream/gpg2.git] / Makefile.am
1 # Makefile.am - main makefile for GnuPG
2 #       Copyright (C) 2001, 2004, 2010 Free Software Foundation, Inc.
3 #
4 # This file is part of GnuPG.
5 #
6 # GnuPG is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # GnuPG is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
18
19 ## Process this file with automake to produce Makefile.in
20
21 ACLOCAL_AMFLAGS = -I m4
22 DISTCHECK_CONFIGURE_FLAGS = --enable-symcryptrun --enable-mailto --enable-g13
23
24 GITLOG_TO_CHANGELOG=gitlog-to-changelog
25
26 EXTRA_DIST = build-aux/config.rpath build-aux/potomo autogen.sh autogen.rc \
27              ChangeLog-2011 po/ChangeLog-2011 build-aux/ChangeLog-2011 \
28              VERSION README.GIT build-aux/gitlog-to-changelog \
29              build-aux/git-log-fix build-aux/git-log-footer \
30              build-aux/getswdb.sh                           \
31              build-aux/speedo.mk                            \
32              build-aux/speedo/zlib.pc                       \
33              build-aux/speedo/w32/inst-options.ini          \
34              build-aux/speedo/w32/inst.nsi                  \
35              build-aux/speedo/w32/pkg-copyright.txt         \
36              build-aux/speedo/w32/g4wihelp.c                \
37              build-aux/speedo/w32/pango.modules             \
38              build-aux/speedo/w32/gdk-pixbuf-loaders.cache  \
39              build-aux/speedo/w32/exdll.h                   \
40              build-aux/speedo/w32/README.txt                \
41              build-aux/speedo/w32/gnupg-logo-150x57.bmp     \
42              build-aux/speedo/w32/gnupg-logo-164x314.bmp    \
43              build-aux/speedo/patches/atk-1.32.0.patch      \
44              build-aux/speedo/patches/libiconv-1.14.patch   \
45              build-aux/speedo/patches/pango-1.29.4.patch
46
47
48 DISTCLEANFILES = g10defs.h
49
50 if BUILD_GPG
51 gpg = g10
52 else
53 gpg =
54 endif
55 if BUILD_GPGSM
56 sm = sm
57 else
58 sm =
59 endif
60 if BUILD_AGENT
61 agent = agent
62 else
63 agent =
64 endif
65 if BUILD_SCDAEMON
66 scd = scd
67 else
68 scd =
69 endif
70 if BUILD_G13
71 g13 = g13
72 else
73 g13 =
74 endif
75 if BUILD_DIRMNGR
76 dirmngr = dirmngr
77 else
78 dirmngr =
79 endif
80 if BUILD_TOOLS
81 tools = tools
82 else
83 tools =
84 endif
85 if BUILD_DOC
86 doc = doc
87 else
88 doc =
89 endif
90
91 if RUN_TESTS
92 tests = tests
93 else
94 tests =
95 endif
96
97 SUBDIRS = m4 common kbx \
98           ${gpg} ${sm} ${agent} ${scd} ${g13} ${dirmngr} \
99           ${tools} po ${doc} ${tests}
100
101 dist_doc_DATA = README
102
103
104 dist-hook: gen-ChangeLog
105
106 if HAVE_W32_SYSTEM
107 install-data-hook:
108         set -e; \
109         for i in $$($(top_srcdir)/build-aux/potomo \
110                      --get-linguas $(top_srcdir)/po) ; do \
111            $(MKDIR_P) "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES" || true; \
112            rm -f "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" \
113                                                  2>/dev/null || true; \
114            $(top_srcdir)/build-aux/potomo $(top_srcdir)/po/$$i.po \
115               "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" ; \
116         done
117 endif
118
119
120 gen_start_date = 2011-12-01T06:00:00
121 .PHONY: gen-ChangeLog
122 gen-ChangeLog:
123         if test -d $(top_srcdir)/.git; then                             \
124           (cd $(top_srcdir) &&                                          \
125             $(GITLOG_TO_CHANGELOG) --append-dot --tear-off              \
126             --amend=build-aux/git-log-fix                               \
127             --since=$(gen_start_date) ) > $(distdir)/cl-t;              \
128           cat $(top_srcdir)/build-aux/git-log-footer >> $(distdir)/cl-t;  \
129           rm -f $(distdir)/ChangeLog;                                   \
130           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
131         fi
132
133
134 stowinstall:
135         $(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/gnupg