2005-03-18 00:14:47 +01:00
|
|
|
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
|
|
# 2005 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
|
2005-05-31 10:39:18 +02:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-06-29 15:46:34 +02:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2005-11-06 05:32:54 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/intl @LIBUSB_CPPFLAGS@
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
EXTRA_DIST = options.skel
|
|
|
|
# it seems that we can't use this with automake 1.5
|
|
|
|
#OMIT_DEPENDENCIES = zlib.h zconf.h
|
2005-03-18 00:14:47 +01:00
|
|
|
|
2003-04-15 17:46:13 +02:00
|
|
|
if ! HAVE_DOSISH_SYSTEM
|
2005-11-06 05:32:54 +01:00
|
|
|
AM_CPPFLAGS += -DGNUPG_LIBEXECDIR="\"$(libexecdir)/@PACKAGE@\""
|
2003-04-15 17:46:13 +02:00
|
|
|
endif
|
2005-11-06 05:32:54 +01:00
|
|
|
|
2003-05-31 06:06:06 +02:00
|
|
|
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
2006-07-09 01:29:25 +02:00
|
|
|
other_libs = $(LIBICONV) $(DNSLIBS) $(LIBINTL) $(CAPLIBS)
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
bin_PROGRAMS = gpg gpgv
|
1997-11-18 15:06:00 +01:00
|
|
|
|
* misc.c (compress_algo_to_string, string_to_compress_algo,
check_compress_algo): Add bzip2.
* compress.c (compress_filter): Make static to help force the use of
push_compress_filter. Remove default algorithm setting since that is done
in push_compress_filter now.
* main.h: Use named algorithm.
* filter.h, compress.c (push_compress_filter, push_compress_filter2): New.
Figure out which is the appropriate compression filter to use, and push it
into place.
* compress.c (handle_compressed), encode.c (encode_simple, encode_crypt),
sign.c (sign_file, sign_symencrypt_file), import.c (read_block), export.c
(do_export): Use push_compress_filter instead of pushing the compression
filter ourselves.
* compress-bz2.c: New. Bzlib versions of the compression filter routines.
* Makefile.am: Include compress-bz2.c if bz2lib is available.
2003-10-31 06:39:02 +01:00
|
|
|
if ENABLE_BZIP2_SUPPORT
|
|
|
|
bzip2_source = compress-bz2.c
|
|
|
|
else
|
|
|
|
bzip2_source =
|
|
|
|
endif
|
|
|
|
|
1998-02-02 15:36:06 +01:00
|
|
|
common_source = \
|
2002-06-29 15:46:34 +02:00
|
|
|
global.h \
|
1997-11-18 15:06:00 +01:00
|
|
|
build-packet.c \
|
1997-11-23 16:38:27 +01:00
|
|
|
compress.c \
|
* misc.c (compress_algo_to_string, string_to_compress_algo,
check_compress_algo): Add bzip2.
* compress.c (compress_filter): Make static to help force the use of
push_compress_filter. Remove default algorithm setting since that is done
in push_compress_filter now.
* main.h: Use named algorithm.
* filter.h, compress.c (push_compress_filter, push_compress_filter2): New.
Figure out which is the appropriate compression filter to use, and push it
into place.
* compress.c (handle_compressed), encode.c (encode_simple, encode_crypt),
sign.c (sign_file, sign_symencrypt_file), import.c (read_block), export.c
(do_export): Use push_compress_filter instead of pushing the compression
filter ourselves.
* compress-bz2.c: New. Bzlib versions of the compression filter routines.
* Makefile.am: Include compress-bz2.c if bz2lib is available.
2003-10-31 06:39:02 +01:00
|
|
|
$(bzip2_source) \
|
1997-11-18 15:06:00 +01:00
|
|
|
filter.h \
|
|
|
|
free-packet.c \
|
|
|
|
getkey.c \
|
2002-06-29 15:46:34 +02:00
|
|
|
keydb.c keydb.h \
|
|
|
|
keyring.c keyring.h \
|
|
|
|
seskey.c \
|
1997-12-12 13:03:58 +01:00
|
|
|
kbnode.c \
|
1997-11-18 15:06:00 +01:00
|
|
|
main.h \
|
|
|
|
mainproc.c \
|
1997-11-21 15:53:57 +01:00
|
|
|
armor.c \
|
1997-11-18 15:06:00 +01:00
|
|
|
mdfilter.c \
|
1997-12-23 18:30:18 +01:00
|
|
|
textfilter.c \
|
2003-04-15 17:46:13 +02:00
|
|
|
progress.c \
|
1998-04-07 20:16:10 +02:00
|
|
|
misc.c \
|
1997-11-18 15:06:00 +01:00
|
|
|
options.h \
|
1997-11-24 12:04:11 +01:00
|
|
|
openfile.c \
|
1997-11-24 23:24:04 +01:00
|
|
|
keyid.c \
|
1997-11-18 15:06:00 +01:00
|
|
|
packet.h \
|
|
|
|
parse-packet.c \
|
1998-01-30 17:23:16 +01:00
|
|
|
status.c \
|
|
|
|
status.h \
|
1998-02-02 15:36:06 +01:00
|
|
|
plaintext.c \
|
1998-03-19 16:27:29 +01:00
|
|
|
sig-check.c \
|
2002-06-29 15:46:34 +02:00
|
|
|
keylist.c \
|
|
|
|
signal.c
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2003-10-02 12:20:12 +02:00
|
|
|
if ENABLE_CARD_SUPPORT
|
2005-10-05 20:22:36 +02:00
|
|
|
card_support_source_gpg = card-util.c
|
2003-10-02 12:20:12 +02:00
|
|
|
card_support_source_scd = \
|
2003-09-28 15:41:58 +02:00
|
|
|
app-common.h \
|
|
|
|
app-openpgp.c \
|
|
|
|
iso7816.c iso7816.h \
|
|
|
|
apdu.c apdu.h \
|
|
|
|
ccid-driver.c ccid-driver.h
|
2004-04-27 10:23:45 +02:00
|
|
|
card_support_source_local = cardglue.c cardglue.h tlv.c tlv.h
|
2003-10-02 12:20:12 +02:00
|
|
|
else
|
2005-10-05 20:22:36 +02:00
|
|
|
card_support_source_gpg =
|
2003-10-02 12:20:12 +02:00
|
|
|
card_support_source_scd =
|
|
|
|
card_support_source_local =
|
|
|
|
endif
|
2003-09-27 21:37:53 +02:00
|
|
|
|
2005-10-05 20:22:36 +02:00
|
|
|
card_support_source = $(card_support_source_local) $(card_support_source_gpg) $(card_support_source_scd)
|
2003-09-27 21:37:53 +02:00
|
|
|
|
2005-10-05 20:22:36 +02:00
|
|
|
gpg_SOURCES = gpg.c \
|
1998-02-02 15:36:06 +01:00
|
|
|
$(common_source) \
|
2003-09-27 21:37:53 +02:00
|
|
|
$(card_support_source) \
|
2002-06-29 15:46:34 +02: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 22:44:06 +01:00
|
|
|
verify.c \
|
2002-06-29 15:46:34 +02:00
|
|
|
revoke.c \
|
1998-03-09 22:44:06 +01:00
|
|
|
decrypt.c \
|
1998-07-29 21:35:05 +02:00
|
|
|
keyedit.c \
|
1999-04-18 10:18:52 +02:00
|
|
|
dearmor.c \
|
2002-06-29 15:46:34 +02:00
|
|
|
import.c \
|
|
|
|
export.c \
|
|
|
|
trustdb.c \
|
|
|
|
trustdb.h \
|
|
|
|
tdbdump.c \
|
|
|
|
tdbio.c \
|
|
|
|
tdbio.h \
|
|
|
|
delkey.c \
|
|
|
|
keygen.c \
|
|
|
|
pipemode.c \
|
|
|
|
helptext.c \
|
|
|
|
keyserver.c \
|
|
|
|
keyserver-internal.h \
|
|
|
|
photoid.c photoid.h \
|
|
|
|
exec.c exec.h
|
|
|
|
|
|
|
|
gpgv_SOURCES = gpgv.c \
|
|
|
|
$(common_source) \
|
|
|
|
verify.c
|
|
|
|
|
2004-12-18 23:23:49 +01:00
|
|
|
LDADD = $(needed_libs) $(other_libs) @ZLIBS@ @W32LIBS@ @LIBREADLINE@
|
2005-08-21 22:58:46 +02:00
|
|
|
gpg_LDADD = $(LDADD) @DLLIBS@ @NETLIBS@ @LIBUSB@
|
1998-02-18 19:52:59 +01:00
|
|
|
|
1998-02-02 15:36:06 +01:00
|
|
|
$(PROGRAMS): $(needed_libs)
|
1997-11-19 14:12:23 +01:00
|
|
|
|
1998-10-25 20:00:01 +01:00
|
|
|
install-data-local:
|
1999-06-15 14:31:07 +02:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
|
|
|
|
$(INSTALL_DATA) $(srcdir)/options.skel \
|
|
|
|
$(DESTDIR)$(pkgdatadir)/options.skel
|
2002-06-29 15:46:34 +02:00
|
|
|
@set -e;\
|
|
|
|
if test -f $(DESTDIR)$(bindir)/gpgm ; then \
|
|
|
|
echo "removing obsolete gpgm binary" ; \
|
|
|
|
rm $(DESTDIR)$(bindir)/gpgm ; \
|
|
|
|
fi
|
2003-10-02 12:20:12 +02:00
|
|
|
|
|
|
|
# Helper to update some source files.
|
|
|
|
update-source-from-gnupg-2:
|
2003-10-08 17:21:20 +02:00
|
|
|
@set -e; \
|
|
|
|
if test -d ../../gnupg-1.9/scd; then dir="../../gnupg-1.9"; \
|
|
|
|
elif test -d ../../gnupg/scd; then dir="../../gnupg"; \
|
|
|
|
else exit 1; \
|
|
|
|
fi; \
|
|
|
|
for i in $(card_support_source_scd); do \
|
|
|
|
cp $$dir/scd/$$i $$i; echo $$i; \
|
|
|
|
done ;\
|
2005-10-05 20:22:36 +02:00
|
|
|
for i in $(card_support_source_gpg); do \
|
2003-10-08 17:21:20 +02:00
|
|
|
cp $$dir/g10/$$i $$i; echo $$i; \
|
|
|
|
done ; \
|
|
|
|
echo "Please remember to update the ChangeLog accordingly!"
|