2001-03-08 14:33:24 +00:00
|
|
|
# Copyright (C) 1998, 1999, 2000, 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
|
|
|
|
|
1997-11-18 14:06:00 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2001-07-26 09:37:47 +00:00
|
|
|
INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl
|
2002-04-08 15:10:51 +00:00
|
|
|
EXTRA_DIST = options.skel
|
2001-10-23 08:04:00 +00:00
|
|
|
# it seems that we can't use this with automake 1.5
|
|
|
|
#OMIT_DEPENDENCIES = zlib.h zconf.h
|
1998-06-25 10:19:08 +00:00
|
|
|
LDFLAGS = @LDFLAGS@ @DYNLINK_LDFLAGS@
|
1999-10-09 18:37:05 +00:00
|
|
|
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
1997-11-18 14:06:00 +00:00
|
|
|
|
1998-07-21 12:53:38 +00:00
|
|
|
#noinst_PROGRAMS = gpgd
|
2000-10-04 13:51:27 +00:00
|
|
|
bin_PROGRAMS = gpg gpgv
|
1997-11-18 14:06:00 +00:00
|
|
|
|
1998-02-02 14:36:06 +00:00
|
|
|
common_source = \
|
2001-09-06 17:10:00 +00:00
|
|
|
global.h \
|
1997-11-18 14:06:00 +00:00
|
|
|
build-packet.c \
|
1997-11-23 15:38:27 +00:00
|
|
|
compress.c \
|
1997-11-18 14:06:00 +00:00
|
|
|
filter.h \
|
|
|
|
free-packet.c \
|
|
|
|
getkey.c \
|
2001-09-06 17:10:00 +00:00
|
|
|
keydb.c keydb.h \
|
|
|
|
keyring.c keyring.h \
|
2000-10-04 13:51:27 +00:00
|
|
|
seskey.c \
|
1997-12-12 12:03:58 +00:00
|
|
|
kbnode.c \
|
1997-11-18 14:06:00 +00:00
|
|
|
main.h \
|
|
|
|
mainproc.c \
|
1997-11-21 14:53:57 +00:00
|
|
|
armor.c \
|
1997-11-18 14:06:00 +00:00
|
|
|
mdfilter.c \
|
1997-12-23 17:30:18 +00:00
|
|
|
textfilter.c \
|
1998-04-07 18:16:10 +00:00
|
|
|
misc.c \
|
1997-11-18 14:06:00 +00:00
|
|
|
options.h \
|
1997-11-24 11:04:11 +00:00
|
|
|
openfile.c \
|
1997-11-24 22:24:04 +00:00
|
|
|
keyid.c \
|
1997-11-18 14:06:00 +00:00
|
|
|
packet.h \
|
|
|
|
parse-packet.c \
|
1997-11-24 11:04:11 +00:00
|
|
|
comment.c \
|
1998-01-30 16:23:16 +00:00
|
|
|
status.c \
|
|
|
|
status.h \
|
1998-02-02 14:36:06 +00:00
|
|
|
plaintext.c \
|
1998-03-19 15:27:29 +00:00
|
|
|
sig-check.c \
|
2001-09-20 07:12:52 +00:00
|
|
|
keylist.c \
|
2001-12-21 23:06:02 +00:00
|
|
|
signal.c
|
1997-11-18 14:06:00 +00:00
|
|
|
|
1998-02-24 18:50:46 +00:00
|
|
|
gpg_SOURCES = g10.c \
|
1998-02-02 14:36:06 +00:00
|
|
|
$(common_source) \
|
2000-10-04 13:51:27 +00:00
|
|
|
pkclist.c \
|
|
|
|
skclist.c \
|
|
|
|
pubkey-enc.c \
|
|
|
|
passphrase.c \
|
|
|
|
seckey-cert.c \
|
|
|
|
encr-data.c \
|
|
|
|
cipher.c \
|
|
|
|
encode.c \
|
|
|
|
sign.c \
|
1998-03-09 21:44:06 +00:00
|
|
|
verify.c \
|
2000-10-04 13:51:27 +00:00
|
|
|
revoke.c \
|
1998-03-09 21:44:06 +00:00
|
|
|
decrypt.c \
|
1998-07-29 19:35:05 +00:00
|
|
|
keyedit.c \
|
1999-04-18 08:18:52 +00:00
|
|
|
dearmor.c \
|
2000-10-04 13:51:27 +00:00
|
|
|
import.c \
|
|
|
|
export.c \
|
|
|
|
hkp.h \
|
|
|
|
hkp.c \
|
|
|
|
trustdb.c \
|
|
|
|
trustdb.h \
|
|
|
|
tdbdump.c \
|
|
|
|
tdbio.c \
|
|
|
|
tdbio.h \
|
|
|
|
delkey.c \
|
|
|
|
keygen.c \
|
2000-11-11 17:17:52 +00:00
|
|
|
pipemode.c \
|
2001-12-06 21:43:04 +00:00
|
|
|
helptext.c \
|
|
|
|
keyserver.c \
|
2001-12-21 23:06:02 +00:00
|
|
|
keyserver-internal.h \
|
|
|
|
photoid.c photoid.h \
|
|
|
|
exec.c exec.h
|
|
|
|
|
|
|
|
|
2000-10-04 13:51:27 +00:00
|
|
|
|
|
|
|
gpgv_SOURCES = gpgv.c \
|
|
|
|
$(common_source) \
|
|
|
|
verify.c
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-02-02 14:36:06 +00:00
|
|
|
|
1998-07-21 12:53:38 +00:00
|
|
|
#gpgd_SOURCES = gpgd.c \
|
|
|
|
# ks-proto.h \
|
|
|
|
# ks-proto.c \
|
1998-09-28 19:25:31 +00:00
|
|
|
# ks-db.c \
|
|
|
|
# ks-db.h \
|
1998-07-21 12:53:38 +00:00
|
|
|
# $(common_source)
|
1998-04-02 19:27:10 +00:00
|
|
|
|
1998-10-21 17:34:36 +00:00
|
|
|
LDADD = $(needed_libs) @ZLIBS@ @INTLLIBS@
|
2001-12-20 16:23:55 +00:00
|
|
|
# gpg gets LIBOBJS to add in mkdtemp if the platform doesn't have it
|
|
|
|
gpg_LDADD = @LIBOBJS@ $(LDADD)
|
1998-02-18 18:52:59 +00:00
|
|
|
|
1998-02-02 14:36:06 +00:00
|
|
|
$(PROGRAMS): $(needed_libs)
|
1997-11-19 13:12:23 +00:00
|
|
|
|
1998-10-12 20:16:38 +00:00
|
|
|
|
1998-10-25 19:00:01 +00:00
|
|
|
install-data-local:
|
1999-06-15 12:31:07 +00:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
|
|
|
|
$(INSTALL_DATA) $(srcdir)/options.skel \
|
|
|
|
$(DESTDIR)$(pkgdatadir)/options.skel
|
1999-05-06 13:17:17 +00:00
|
|
|
@set -e;\
|
1999-06-26 10:23:06 +00:00
|
|
|
if test -f $(DESTDIR)$(bindir)/gpgm ; then \
|
|
|
|
echo "removing obsolete gpgm binary" ; \
|
|
|
|
rm $(DESTDIR)$(bindir)/gpgm ; \
|
1999-05-06 13:17:17 +00:00
|
|
|
fi
|
1998-10-25 19:00:01 +00:00
|
|
|
|