2002-03-21 15:42:14 +01:00
|
|
|
# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
2001-10-31 12:47:04 +01:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
bin_PROGRAMS = gpgsm
|
|
|
|
|
2001-12-18 20:35:12 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/intl \
|
|
|
|
$(LIBGCRYPT_CFLAGS) $(LIBKSBA_CFLAGS)
|
2001-11-10 19:08:10 +01:00
|
|
|
LDFLAGS = @LDFLAGS@
|
2001-10-31 12:47:04 +01:00
|
|
|
|
2001-11-06 20:14:14 +01:00
|
|
|
gpgsm_SOURCES = \
|
|
|
|
gpgsm.c gpgsm.h \
|
2001-11-24 18:43:43 +01:00
|
|
|
misc.c \
|
2001-11-13 13:50:14 +01:00
|
|
|
keydb.c keydb.h \
|
2001-11-07 18:44:22 +01:00
|
|
|
server.c \
|
2001-11-25 19:23:06 +01:00
|
|
|
call-agent.c \
|
2002-01-11 18:07:51 +01:00
|
|
|
call-dirmngr.c \
|
2001-11-13 13:50:14 +01:00
|
|
|
fingerprint.c \
|
2001-11-27 18:40:09 +01:00
|
|
|
base64.c \
|
2001-12-11 13:31:04 +01:00
|
|
|
certlist.c \
|
2001-11-13 13:50:14 +01:00
|
|
|
certdump.c \
|
|
|
|
certcheck.c \
|
|
|
|
certpath.c \
|
2001-11-19 17:17:43 +01:00
|
|
|
keylist.c \
|
2001-11-16 18:56:23 +01:00
|
|
|
verify.c \
|
2001-11-23 18:12:37 +01:00
|
|
|
sign.c \
|
2001-11-27 18:40:09 +01:00
|
|
|
encrypt.c \
|
2001-12-06 00:48:01 +01:00
|
|
|
decrypt.c \
|
2002-01-10 20:47:20 +01:00
|
|
|
import.c \
|
2002-03-21 15:42:14 +01:00
|
|
|
export.c \
|
2002-01-10 20:47:20 +01:00
|
|
|
certreqgen.c
|
2001-10-31 12:47:04 +01:00
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
gpgsm_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a ../kbx/libkeybox.a \
|
2001-12-18 18:37:48 +01:00
|
|
|
../common/libcommon.a $(LIBGCRYPT_LIBS) $(LIBKSBA_LIBS)
|
2001-10-31 12:47:04 +01:00
|
|
|
|
|
|
|
|