2001-11-24 18:46:55 +01:00
|
|
|
# Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of GnuPG.
|
|
|
|
#
|
|
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GnuPG is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2002-08-10 13:25:32 +02:00
|
|
|
localedir = $(datadir)/locale
|
|
|
|
INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
|
|
|
|
|
2001-11-24 18:46:55 +01:00
|
|
|
bin_PROGRAMS = gpg-agent
|
2002-08-21 10:18:23 +02:00
|
|
|
pkglib_PROGRAMS = gpg-protect-tool
|
2001-11-24 18:46:55 +01:00
|
|
|
|
2002-05-23 11:07:45 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common $(LIBGCRYPT_CFLAGS) $(PTH_CFLAGS)
|
2001-11-24 18:46:55 +01:00
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
|
|
|
|
gpg_agent_SOURCES = \
|
2001-11-24 19:52:02 +01:00
|
|
|
gpg-agent.c agent.h \
|
|
|
|
command.c \
|
2001-12-10 10:27:30 +01:00
|
|
|
query.c \
|
2002-01-19 21:59:19 +01:00
|
|
|
cache.c \
|
2001-12-10 10:27:30 +01:00
|
|
|
trans.c \
|
2001-12-06 00:49:07 +01:00
|
|
|
findkey.c \
|
|
|
|
pksign.c \
|
2002-01-10 20:45:32 +01:00
|
|
|
pkdecrypt.c \
|
2002-01-15 14:01:52 +01:00
|
|
|
genkey.c \
|
2002-01-31 17:38:45 +01:00
|
|
|
protect.c \
|
2002-02-28 12:07:59 +01:00
|
|
|
trustlist.c \
|
|
|
|
divert-scd.c \
|
2002-03-04 11:34:51 +01:00
|
|
|
call-scd.c \
|
2002-03-06 15:16:37 +01:00
|
|
|
learncard.c \
|
2002-03-04 11:34:51 +01:00
|
|
|
sexp-parse.h
|
|
|
|
|
2001-11-24 18:46:55 +01:00
|
|
|
|
|
|
|
gpg_agent_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a \
|
2002-05-23 11:07:45 +02:00
|
|
|
../common/libcommon.a $(LIBGCRYPT_LIBS) $(PTH_LIBS)
|
2001-12-18 20:35:12 +01:00
|
|
|
|
2002-08-21 10:18:23 +02:00
|
|
|
gpg_protect_tool_SOURCES = \
|
2002-01-31 17:38:45 +01:00
|
|
|
protect-tool.c \
|
2002-06-25 19:50:59 +02:00
|
|
|
protect.c \
|
2002-06-27 09:29:29 +02:00
|
|
|
minip12.c minip12.h \
|
|
|
|
simple-pwquery.c simple-pwquery.h
|
2001-11-24 18:46:55 +01:00
|
|
|
|
2002-08-21 10:18:23 +02:00
|
|
|
gpg_protect_tool_LDADD = ../jnlib/libjnlib.a \
|
2002-01-31 17:38:45 +01:00
|
|
|
../common/libcommon.a $(LIBGCRYPT_LIBS)
|
2001-11-24 18:46:55 +01:00
|
|
|
|
2002-06-25 19:50:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
|