2003-05-31 05:41:42 +02:00
|
|
|
# Copyright (C) 1998, 1999, 2000, 2001, 2003 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
|
|
|
|
# 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
|
1997-11-18 15:06:00 +01:00
|
|
|
|
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
|
2003-05-31 05:41:42 +02:00
|
|
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
|
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
|
1998-07-30 19:37:03 +02:00
|
|
|
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2004-10-28 20:57:50 +02:00
|
|
|
gpgsplit_LDADD = $(needed_libs) $(other_libs) @ZLIBS@
|
|
|
|
mpicalc_LDADD = $(needed_libs) $(other_libs) @W32LIBS@
|
|
|
|
bftest_LDADD = $(needed_libs) $(other_libs) @W32LIBS@ @DLLIBS@ @NETLIBS@
|
|
|
|
shmtest_LDADD = $(needed_libs) $(other_libs)
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2003-05-31 05:41:42 +02:00
|
|
|
gpgsplit mpicalc bftest shmtest: $(needed_libs)
|