Imported Upstream version 2.1.12
[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-g13 \
23   --enable-gpg2-is-gpg
24
25 GITLOG_TO_CHANGELOG=gitlog-to-changelog
26
27 EXTRA_DIST = build-aux/config.rpath build-aux/potomo autogen.sh autogen.rc \
28              ChangeLog-2011 po/ChangeLog-2011 build-aux/ChangeLog-2011 \
29              VERSION README.GIT build-aux/gitlog-to-changelog \
30              build-aux/git-log-fix build-aux/git-log-footer \
31              build-aux/getswdb.sh                           \
32              build-aux/speedo.mk                            \
33              build-aux/speedo/zlib.pc                       \
34              build-aux/speedo/w32/inst-options.ini          \
35              build-aux/speedo/w32/inst.nsi                  \
36              build-aux/speedo/w32/pkg-copyright.txt         \
37              build-aux/speedo/w32/g4wihelp.c                \
38              build-aux/speedo/w32/pango.modules             \
39              build-aux/speedo/w32/gdk-pixbuf-loaders.cache  \
40              build-aux/speedo/w32/exdll.h                   \
41              build-aux/speedo/w32/README.txt                \
42              build-aux/speedo/w32/gnupg-logo-150x57.bmp     \
43              build-aux/speedo/w32/gnupg-logo-164x314.bmp    \
44              build-aux/speedo/patches/atk-1.32.0.patch      \
45              build-aux/speedo/patches/libiconv-1.14.patch   \
46              build-aux/speedo/patches/pango-1.29.4.patch    \
47              build-aux/speedo/patches/sqlite.patch
48
49
50 DISTCLEANFILES = g10defs.h
51
52 if BUILD_GPG
53 gpg = g10
54 else
55 gpg =
56 endif
57 if BUILD_GPGSM
58 sm = sm
59 else
60 sm =
61 endif
62 if BUILD_AGENT
63 agent = agent
64 else
65 agent =
66 endif
67 if BUILD_SCDAEMON
68 scd = scd
69 else
70 scd =
71 endif
72 if BUILD_G13
73 g13 = g13
74 else
75 g13 =
76 endif
77 if BUILD_DIRMNGR
78 dirmngr = dirmngr
79 else
80 dirmngr =
81 endif
82 if BUILD_TOOLS
83 tools = tools
84 else
85 tools =
86 endif
87 if BUILD_DOC
88 doc = doc
89 else
90 doc =
91 endif
92
93 if RUN_TESTS
94 tests = tests
95 else
96 tests =
97 endif
98
99 SUBDIRS = m4 common kbx \
100           ${gpg} ${sm} ${agent} ${scd} ${g13} ${dirmngr} \
101           ${tools} po ${doc} ${tests}
102
103 dist_doc_DATA = README
104
105
106 dist-hook: gen-ChangeLog
107
108 distcheck-hook:
109         set -e; ( \
110         pref="#+macro: gnupg21_" ;\
111         reldate="$$(date -u +%Y-%m-%d)" ;\
112         echo "$${pref}ver  $(PACKAGE_VERSION)"  ;\
113         echo "$${pref}date $${reldate}" ;\
114         list='$(DIST_ARCHIVES)'; for i in $$list; do \
115           case "$$i" in *.tar.bz2) \
116             echo "$${pref}size $$(wc -c <$$i|awk '{print int($$1/1024)}')k" ;\
117             echo "$${pref}sha1 $$(sha1sum <$$i|cut -d' ' -f1)" ;\
118             echo "$${pref}sha2 $$(sha256sum <$$i|cut -d' ' -f1)" ;;\
119           esac;\
120         done ) | tee $(distdir).swdb
121
122
123 if HAVE_W32_SYSTEM
124 install-data-hook:
125         set -e; \
126         for i in $$($(top_srcdir)/build-aux/potomo \
127                      --get-linguas $(top_srcdir)/po) ; do \
128            $(MKDIR_P) "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES" || true; \
129            rm -f "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" \
130                                                  2>/dev/null || true; \
131            $(top_srcdir)/build-aux/potomo $(top_srcdir)/po/$$i.po \
132               "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" ; \
133         done
134 endif
135
136
137 gen_start_date = 2011-12-01T06:00:00
138 .PHONY: gen-ChangeLog
139 gen-ChangeLog:
140         if test -e $(top_srcdir)/.git; then                             \
141           (cd $(top_srcdir) &&                                          \
142             $(GITLOG_TO_CHANGELOG) --append-dot --tear-off              \
143             --amend=build-aux/git-log-fix                               \
144             --since=$(gen_start_date) ) > $(distdir)/cl-t;              \
145           cat $(top_srcdir)/build-aux/git-log-footer >> $(distdir)/cl-t;  \
146           rm -f $(distdir)/ChangeLog;                                   \
147           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
148         fi
149
150
151 stowinstall:
152         $(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/gnupg