Imported Upstream version 2.1.0
[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 -I gl/m4
22 DISTCHECK_CONFIGURE_FLAGS = --enable-symcryptrun --enable-mailto --enable-gpgtar
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/patches/atk-1.32.0.patch      \
42              build-aux/speedo/patches/libiconv-1.14.patch   \
43              build-aux/speedo/patches/pango-1.29.4.patch
44
45
46 DISTCLEANFILES = g10defs.h
47
48 if BUILD_GPGSM
49 kbx = kbx
50 else
51 kbx =
52 endif
53
54
55 if BUILD_GPG
56 gpg = g10
57 else
58 gpg =
59 endif
60 if BUILD_GPGSM
61 sm = sm
62 else
63 sm =
64 endif
65 if BUILD_AGENT
66 agent = agent
67 else
68 agent =
69 endif
70 if BUILD_SCDAEMON
71 scd = scd
72 else
73 scd =
74 endif
75 if BUILD_G13
76 g13 = g13
77 else
78 g13 =
79 endif
80 if BUILD_DIRMNGR
81 dirmngr = dirmngr
82 else
83 dirmngr =
84 endif
85 if BUILD_TOOLS
86 tools = tools
87 else
88 tools =
89 endif
90 if BUILD_DOC
91 doc = doc
92 else
93 doc =
94 endif
95
96 if RUN_TESTS
97 tests = tests
98 else
99 tests =
100 endif
101
102 SUBDIRS = m4 gl common ${kbx} \
103           ${gpg} ${sm} ${agent} ${scd} ${g13} ${dirmngr} \
104           ${tools} po ${doc} ${tests}
105
106 dist_doc_DATA = README
107
108
109 dist-hook: gen-ChangeLog
110
111 if HAVE_W32_SYSTEM
112 install-data-hook:
113         set -e; \
114         for i in $$($(top_srcdir)/build-aux/potomo \
115                      --get-linguas $(top_srcdir)/po) ; do \
116            $(MKDIR_P) "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES" || true; \
117            rm -f "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" \
118                                                  2>/dev/null || true; \
119            $(top_srcdir)/build-aux/potomo $(top_srcdir)/po/$$i.po \
120               "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" ; \
121         done
122 endif
123
124
125 gen_start_date = 2011-12-01T06:00:00
126 .PHONY: gen-ChangeLog
127 gen-ChangeLog:
128         if test -d $(top_srcdir)/.git; then                             \
129           (cd $(top_srcdir) &&                                          \
130             $(GITLOG_TO_CHANGELOG) --append-dot --tear-off              \
131             --amend=build-aux/git-log-fix                               \
132             --since=$(gen_start_date) ) > $(distdir)/cl-t;              \
133           cat $(top_srcdir)/build-aux/git-log-footer >> $(distdir)/cl-t;  \
134           rm -f $(distdir)/ChangeLog;                                   \
135           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
136         fi
137
138
139 stowinstall:
140         $(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/gnupg