~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to agent/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-03-29 10:30:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050329103032-sj42n2ain3ipx310
Tags: upstream-1.9.15
ImportĀ upstreamĀ versionĀ 1.9.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
 
2
#
 
3
# This file is part of GnuPG.
 
4
#
 
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 2 of the License, or
 
8
# (at your option) any later version.
 
9
 
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.
 
14
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
18
 
 
19
## Process this file with automake to produce Makefile.in
 
20
 
 
21
bin_PROGRAMS = gpg-agent
 
22
libexec_PROGRAMS = gpg-protect-tool gpg-preset-passphrase
 
23
 
 
24
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/intl
 
25
 
 
26
include $(top_srcdir)/am/cmacros.am
 
27
 
 
28
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(PTH_CFLAGS)
 
29
 
 
30
gpg_agent_SOURCES = \
 
31
        gpg-agent.c agent.h \
 
32
        command.c \
 
33
        query.c \
 
34
        cache.c \
 
35
        trans.c \
 
36
        findkey.c \
 
37
        pksign.c \
 
38
        pkdecrypt.c \
 
39
        genkey.c \
 
40
        protect.c \
 
41
        trustlist.c \
 
42
        divert-scd.c \
 
43
        call-scd.c \
 
44
        learncard.c
 
45
 
 
46
 
 
47
gpg_agent_LDADD = ../jnlib/libjnlib.a ../common/libcommon.a \
 
48
                $(LIBGCRYPT_LIBS) $(PTH_LIBS) $(LIBASSUAN_LIBS) \
 
49
                 -lgpg-error @LIBINTL@
 
50
 
 
51
gpg_protect_tool_SOURCES = \
 
52
        protect-tool.c \
 
53
        protect.c \
 
54
        minip12.c minip12.h 
 
55
 
 
56
gpg_protect_tool_LDADD = ../common/libsimple-pwquery.a \
 
57
        ../jnlib/libjnlib.a  ../common/libcommon.a  \
 
58
         $(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
 
59
if HAVE_W32_SYSTEM
 
60
gpg_protect_tool_LDADD += -lwsock32
 
61
endif
 
62
 
 
63
gpg_preset_passphrase_SOURCES = \
 
64
        preset-passphrase.c
 
65
 
 
66
gpg_preset_passphrase_LDADD = ../common/libsimple-pwquery.a \
 
67
        ../jnlib/libjnlib.a ../common/libcommon.a \
 
68
         $(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
 
69
if HAVE_W32_SYSTEM
 
70
gpg_preset_passphrase_LDADD += -lwsock32
 
71
endif
 
72