2004-12-18 23:23:49 +01:00
|
|
|
# Copyright (C) 1998, 1999, 2000, 2001, 2003,
|
|
|
|
# 2004 Free Software Foundation, Inc.
|
2002-06-29 15:46:34 +02: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
|
2007-10-23 12:48:09 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2002-06-29 15:46:34 +02:00
|
|
|
# (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
|
2007-10-23 12:48:09 +02:00
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2002-06-29 15:46:34 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
1999-10-26 14:14:37 +02:00
|
|
|
|
2003-02-23 06:12:28 +01:00
|
|
|
EXTRA_DIST = lspgpot ring-a-party mail-signed-keys convert-from-106
|
2006-12-11 20:54:53 +01:00
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/intl
|
|
|
|
|
|
|
|
if ! HAVE_DOSISH_SYSTEM
|
|
|
|
AM_CPPFLAGS += -DLOCALEDIR="\"$(localedir)\""
|
|
|
|
endif
|
|
|
|
|
2004-10-28 20:57:50 +02:00
|
|
|
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
|
|
|
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
bin_PROGRAMS = gpgsplit
|
2006-04-05 00:19:13 +02:00
|
|
|
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest make-dns-cert
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2005-08-04 20:50:54 +02:00
|
|
|
if HAVE_USTAR
|
|
|
|
bin_SCRIPTS = gpg-zip
|
|
|
|
endif
|
|
|
|
|
2007-04-16 17:32:49 +02:00
|
|
|
if HAVE_SHM
|
|
|
|
noinst_PROGRAMS += shmtest
|
|
|
|
endif
|
|
|
|
|
2004-10-28 20:57:50 +02:00
|
|
|
gpgsplit_LDADD = $(needed_libs) $(other_libs) @ZLIBS@
|
|
|
|
mpicalc_LDADD = $(needed_libs) $(other_libs) @W32LIBS@
|
2004-12-18 23:23:49 +01:00
|
|
|
bftest_LDADD = $(needed_libs) $(other_libs) @W32LIBS@ @DLLIBS@ @NETLIBS@ @LIBREADLINE@
|
|
|
|
shmtest_LDADD = $(needed_libs) $(other_libs) @LIBREADLINE@
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2003-05-31 05:41:42 +02:00
|
|
|
gpgsplit mpicalc bftest shmtest: $(needed_libs)
|