32940a3f61dcc78e00c721d711b44b8f0193fbed
[platform/upstream/gpg2.git] / tools / Makefile.am
1 # Makefile.am - Tools directory
2 #       Copyright (C) 2003, 2007 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 EXTRA_DIST = \
20         Manifest watchgnupg.c ChangeLog-2011 \
21         addgnupghome applygnupgdefaults gpgsm-gencert.sh \
22         lspgpot mail-signed-keys convert-from-106 sockprox.c \
23         ccidmon.c
24
25
26 AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/common
27 include $(top_srcdir)/am/cmacros.am
28
29 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS) $(LIBASSUAN_CFLAGS)
30
31 sbin_SCRIPTS = addgnupghome applygnupgdefaults
32
33 bin_SCRIPTS = gpgsm-gencert.sh
34 if HAVE_USTAR
35 # bin_SCRIPTS += gpg-zip
36 noinst_SCRIPTS = gpg-zip
37 endif
38
39 if BUILD_SYMCRYPTRUN
40   symcryptrun = symcryptrun
41 else
42   symcryptrun =
43 endif
44
45 if BUILD_GPGTAR
46   gpgtar = gpgtar
47 else
48   gpgtar =
49 endif
50
51
52 bin_PROGRAMS = gpgconf gpg-connect-agent gpgkey2ssh ${symcryptrun} ${gpgtar}
53 if !HAVE_W32_SYSTEM
54 bin_PROGRAMS += watchgnupg gpgparsemail
55 endif
56
57 if !DISABLE_REGEX
58 libexec_PROGRAMS = gpg-check-pattern
59 endif
60
61 noinst_PROGRAMS = clean-sat mk-tdata make-dns-cert gpgsplit
62
63 common_libs = $(libcommon) ../jnlib/libjnlib.a ../gl/libgnu.a
64 pwquery_libs = ../common/libsimple-pwquery.a
65
66 gpgsplit_LDADD = $(common_libs) \
67                  $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \
68                  $(ZLIBS) $(LIBINTL) $(LIBICONV)
69
70 gpgconf_SOURCES = gpgconf.c gpgconf.h gpgconf-comp.c no-libgcrypt.c
71
72 # jnlib/common sucks in gpg-error, will they, nil they (some compilers
73 # do not eliminate the supposed-to-be-unused-inline-functions).
74 gpgconf_LDADD = $(common_libs) \
75                 $(LIBINTL) $(GPG_ERROR_LIBS) $(LIBICONV) $(W32SOCKLIBS)
76
77 gpgparsemail_SOURCES = gpgparsemail.c rfc822parse.c rfc822parse.h
78 gpgparsemail_LDADD =
79
80 symcryptrun_SOURCES = symcryptrun.c
81 symcryptrun_LDADD = $(LIBUTIL_LIBS) $(common_libs) $(pwquery_libs) \
82                     $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) \
83                     $(LIBICONV) $(W32SOCKLIBS)
84
85 watchgnupg_SOURCES = watchgnupg.c
86 watchgnupg_LDADD = $(NETLIBS)
87
88 gpg_connect_agent_SOURCES = gpg-connect-agent.c no-libgcrypt.c
89 # FIXME: remove PTH_LIBS (why do we need them at all?)
90 gpg_connect_agent_LDADD = ../common/libgpgrl.a $(common_libs) \
91                           $(LIBASSUAN_LIBS) $(PTH_LIBS) $(GPG_ERROR_LIBS) \
92                           $(LIBREADLINE) $(LIBINTL) $(NETLIBS) $(LIBICONV)
93
94 gpgkey2ssh_SOURCES = gpgkey2ssh.c
95 gpgkey2ssh_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
96 # common sucks in jnlib, via use of BUG() in an inline function, which
97 # some compilers do not eliminate.
98 gpgkey2ssh_LDADD = $(common_libs) \
99                    $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV)
100
101
102 if !DISABLE_REGEX
103 gpg_check_pattern_SOURCES = gpg-check-pattern.c
104 gpg_check_pattern_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
105 gpg_check_pattern_LDADD = $(common_libs) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \
106                           $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS)
107 endif
108
109 gpgtar_SOURCES = \
110         gpgtar.c gpgtar.h \
111         gpgtar-create.c \
112         gpgtar-extract.c \
113         gpgtar-list.c \
114         no-libgcrypt.c
115 gpgtar_CFLAGS = $(GPG_ERROR_CFLAGS) $(PTH_CFLAGS)
116 gpgtar_LDADD = $(common_libs) $(GPG_ERROR_LIBS) $(NETLIBS) $(W32SOCKLIBS)
117
118 # Make sure that all libs are build before we use them.  This is
119 # important for things like make -j2.
120 $(PROGRAMS): $(common_libs) $(pwquery_libs) ../common/libgpgrl.a
121