2011-02-04 12:57:53 +01:00
|
|
|
# Keybox Makefile
|
2003-08-05 19:11:04 +02:00
|
|
|
# Copyright (C) 2001, 2002, 2003 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
|
2007-07-04 21:49:40 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2003-08-05 19:11:04 +02:00
|
|
|
# (at your option) any later version.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2003-08-05 19:11:04 +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.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2003-08-05 19:11:04 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
EXTRA_DIST = mkerrors
|
2013-06-27 09:22:00 +02:00
|
|
|
|
2015-04-10 13:11:59 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
2013-06-27 09:22:00 +02:00
|
|
|
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
|
|
|
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2015-08-17 16:13:25 +02:00
|
|
|
noinst_LIBRARIES = libkeybox.a libkeybox509.a
|
2003-08-05 19:11:04 +02:00
|
|
|
bin_PROGRAMS = kbxutil
|
|
|
|
|
2010-03-24 13:15:30 +01:00
|
|
|
if HAVE_W32CE_SYSTEM
|
|
|
|
extra_libs = $(LIBASSUAN_LIBS)
|
|
|
|
else
|
2011-02-04 12:57:53 +01:00
|
|
|
extra_libs =
|
2010-03-24 13:15:30 +01:00
|
|
|
endif
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
common_sources = \
|
|
|
|
keybox.h keybox-defs.h keybox-search-desc.h \
|
|
|
|
keybox-util.c \
|
|
|
|
keybox-init.c \
|
|
|
|
keybox-blob.c \
|
|
|
|
keybox-file.c \
|
|
|
|
keybox-search.c \
|
|
|
|
keybox-update.c \
|
2004-08-24 21:55:47 +02:00
|
|
|
keybox-openpgp.c \
|
2011-02-04 12:57:53 +01:00
|
|
|
keybox-dump.c
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
libkeybox_a_SOURCES = $(common_sources)
|
2015-08-17 16:13:25 +02:00
|
|
|
libkeybox509_a_SOURCES = $(common_sources)
|
|
|
|
|
|
|
|
libkeybox_a_CFLAGS = $(AM_CFLAGS)
|
|
|
|
libkeybox509_a_CFLAGS = $(AM_CFLAGS) -DKEYBOX_WITH_X509=1
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2007-06-15 16:27:31 +02:00
|
|
|
# We need W32SOCKLIBS because the init subsystem code in libcommon
|
|
|
|
# requires it - although we don't actually need it. It is easier
|
|
|
|
# to do it this way.
|
2003-08-05 19:11:04 +02:00
|
|
|
kbxutil_SOURCES = kbxutil.c $(common_sources)
|
2015-08-17 16:13:25 +02:00
|
|
|
kbxutil_CFLAGS = $(AM_CFLAGS) -DKEYBOX_WITH_X509=1
|
2014-11-11 10:13:10 +01:00
|
|
|
kbxutil_LDADD = ../common/libcommon.a \
|
2010-03-24 13:15:30 +01:00
|
|
|
$(KSBA_LIBS) $(LIBGCRYPT_LIBS) $(extra_libs) \
|
2007-06-15 16:27:31 +02:00
|
|
|
$(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2014-11-11 10:13:10 +01:00
|
|
|
$(PROGRAMS) : ../common/libcommon.a
|