2003-12-23 12:05:00 +01:00
|
|
|
# Makefile.am - Tools directory
|
|
|
|
# Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
#
|
2003-12-09 10:07:09 +01:00
|
|
|
# This file is part of GnuPG.
|
2003-12-23 12:05:00 +01:00
|
|
|
#
|
2003-12-09 10:07:09 +01:00
|
|
|
# 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
|
|
|
|
|
2004-01-30 10:12:36 +01:00
|
|
|
EXTRA_DIST = Manifest watchgnupg.c \
|
|
|
|
rfc822parse.c rfc822parse.h gpgparsemail.c \
|
2004-10-22 18:03:04 +02:00
|
|
|
addgnupghome gpgsm-gencert.sh
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2004-02-12 11:02:22 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/intl -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
2004-01-10 12:50:48 +01:00
|
|
|
|
2005-02-24 18:36:11 +01:00
|
|
|
AM_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBASSUAN_CFLAGS)
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2004-01-30 10:12:36 +01:00
|
|
|
sbin_SCRIPTS = addgnupghome
|
|
|
|
|
2004-10-22 14:31:04 +02:00
|
|
|
bin_SCRIPTS = gpgsm-gencert.sh
|
|
|
|
|
2005-04-15 03:33:46 +02:00
|
|
|
if BUILD_SYMCRYPTRUN
|
|
|
|
symcryptrun = symcryptrun
|
|
|
|
else
|
|
|
|
symcryptrun =
|
|
|
|
endif
|
|
|
|
|
|
|
|
bin_PROGRAMS = gpgconf gpg-connect-agent ${symcryptrun}
|
2004-12-15 15:15:54 +01:00
|
|
|
if !HAVE_W32_SYSTEM
|
|
|
|
bin_PROGRAMS += watchgnupg
|
|
|
|
endif
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2004-01-29 00:58:18 +01:00
|
|
|
gpgconf_SOURCES = gpgconf.c gpgconf.h gpgconf-comp.c no-libgcrypt.c
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2004-09-30 16:34:34 +02:00
|
|
|
gpgconf_LDADD = ../jnlib/libjnlib.a ../common/libcommon.a @LIBINTL@
|
2004-01-05 10:28:27 +01:00
|
|
|
|
2005-04-11 01:10:52 +02:00
|
|
|
symcryptrun_SOURCES = symcryptrun.c
|
2005-04-15 03:33:46 +02:00
|
|
|
symcryptrun_LDADD = $(LIBUTIL_LIBS) ../jnlib/libjnlib.a ../common/libcommon.a \
|
2005-04-11 01:10:52 +02:00
|
|
|
../common/libsimple-pwquery.a $(LIBGCRYPT_LIBS) \
|
|
|
|
$(GPG_ERROR_LIBS) $(LIBINTL)
|
|
|
|
|
2005-02-24 18:36:11 +01:00
|
|
|
watchgnupg_SOURCES = watchgnupg.c
|
|
|
|
|
|
|
|
gpg_connect_agent_SOURCES = gpg-connect-agent.c no-libgcrypt.c
|
|
|
|
gpg_connect_agent_LDADD = ../jnlib/libjnlib.a ../common/libcommon.a \
|
|
|
|
$(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL)
|
|
|
|
|