1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00
gnupg/g10/Makefile.am

164 lines
4.5 KiB
Makefile
Raw Normal View History

# 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
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.
#
2002-06-29 15:46:34 +02:00
# 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.
#
2002-06-29 15:46:34 +02:00
# 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/>.
1997-11-18 15:06:00 +01:00
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/intl @LIBUSB_CPPFLAGS@
2002-06-29 15:46:34 +02:00
# it seems that we can't use this with automake 1.5
#OMIT_DEPENDENCIES = zlib.h zconf.h
if ! HAVE_DOSISH_SYSTEM
AM_CPPFLAGS += -DLOCALEDIR="\"$(localedir)\""
AM_CPPFLAGS += -DGNUPG_LIBEXECDIR="\"$(libexecdir)/@PACKAGE@\""
AM_CPPFLAGS += -DGNUPG_DATADIR="\"$(pkgdatadir)\""
AM_CPPFLAGS += -DGNUPG_LIBDIR="\"$(libdir)/@PACKAGE@\""
endif
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
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
# "make distcheck" runs "gpg --version" which unfortunately may print
# warnings about unsupported options to stderr which make distcheck
# rejects. I am not sure on how to pass the envvar GNUPGHOME to that
# gpg invocation to make sure that a gpg.conf from gnupg 2 is not
# used. The easiest way to avoid that is to not run this extra test.
AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = gpg$(EXEEXT)
dist_pkgdata_DATA = options.skel
1997-11-18 15:06:00 +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 \
$(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 \
textfilter.c \
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
if ENABLE_CARD_SUPPORT
card_support_source_gpg = card-util.c
card_support_source_scd = \
app-common.h \
app-openpgp.c \
iso7816.c iso7816.h \
apdu.c apdu.h \
ccid-driver.c ccid-driver.h
card_support_source_local = cardglue.c cardglue.h tlv.c tlv.h
else
2005-10-05 20:22:36 +02:00
card_support_source_gpg =
card_support_source_scd =
card_support_source_local =
endif
2005-10-05 20:22:36 +02:00
card_support_source = $(card_support_source_local) $(card_support_source_gpg) $(card_support_source_scd)
2005-10-05 20:22:36 +02:00
gpg_SOURCES = gpg.c \
1998-02-02 15:36:06 +01:00
$(common_source) \
$(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 \
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
2002-06-29 15:46:34 +02:00
LDADD = $(needed_libs) $(other_libs) @ZLIBS@ @W32LIBS@
gpg_LDADD = $(LDADD) @LIBREADLINE@ @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
install-exec-hook:
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
# Helper to update some source files.
update-source-from-gnupg-2:
@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 \
cp $$dir/g10/$$i $$i; echo $$i; \
done ; \
echo "Please remember to update the ChangeLog accordingly!"