1 # Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
3 # This file is part of GnuPG.
5 # GnuPG is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # GnuPG is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ## Process this file with automake to produce Makefile.in
20 bin_PROGRAMS = gpg-agent
21 libexec_PROGRAMS = gpg-protect-tool gpg-preset-passphrase
22 noinst_PROGRAMS = $(TESTS)
24 # EXTRA_DIST = gpg-agent.ico gpg-agent-resource.rc
26 AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
28 include $(top_srcdir)/am/cmacros.am
30 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
34 command.c command-ssh.c \
48 common_libs = $(libcommon) ../jnlib/libjnlib.a ../gl/libgnu.a
49 commonpth_libs = $(libcommonpth) ../jnlib/libjnlib.a ../gl/libgnu.a
50 pwquery_libs = ../common/libsimple-pwquery.a
54 # $(WINDRES) `echo $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) | \
55 # sed -e 's/-I/--include-dir /g;s/-D/--define /g'` -i $< -o $@
57 #gpg_agent_res_ldflags = -Wl,gpg-agent-resource.o -Wl,--subsystem,windows
58 #gpg_agent_res_deps = gpg-agent-resource.o
60 gpg_agent_res_ldflags =
65 gpg_agent_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_PTH_CFLAGS) $(PTH_CFLAGS)
66 gpg_agent_LDADD = $(commonpth_libs) \
67 $(LIBGCRYPT_LIBS) $(LIBASSUAN_PTH_LIBS) $(PTH_LIBS) \
68 $(GPG_ERROR_LIBS) $(LIBINTL) $(NETLIBS) $(LIBICONV)
69 gpg_agent_LDFLAGS = $(gpg_agent_res_ldflags)
70 gpg_agent_DEPENDENCIES = $(gpg_agent_res_deps)
72 gpg_protect_tool_SOURCES = \
77 gpg_protect_tool_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS)
78 gpg_protect_tool_LDADD = $(common_libs) $(LIBGCRYPT_LIBS) $(LIBASSUAN_LIBS) \
79 $(GPG_ERROR_LIBS) $(LIBINTL) $(NETLIBS) $(LIBICONV)
81 gpg_preset_passphrase_SOURCES = \
84 # Needs $(NETLIBS) for libsimple-pwquery.la.
85 gpg_preset_passphrase_LDADD = \
86 $(pwquery_libs) $(common_libs) \
87 $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(NETLIBS) $(LIBICONV)
90 # Make sure that all libs are build before we use them. This is
91 # important for things like make -j2.
92 $(PROGRAMS): $(common_libs) $(commonpth_libs) $(pwquery_libs)
101 t_common_ldadd = $(common_libs) \
102 $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV)
104 t_protect_SOURCES = t-protect.c protect.c
105 t_protect_LDADD = $(t_common_ldadd)