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
|
|
|
|
|
|
|
|
localedir = $(datadir)/locale
|
|
|
|
INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
|
|
|
|
|
|
|
|
EXTRA_DIST = mkerrors
|
* configure.ac (gl_INIT): Add gnulib stuff.
(fseeko, ftello, ttyname, isascii): Replaced the AC_REPLACE_FUNCS
by a simple check.
(putc_unlocked): Removed check. Not used.
(strsep, mkdtemp, asprintf): Replaced checks by gnulib checks.
(xsize): Added will probably come handy soon.
(CFLAGS): Use -Wformat-security instead of
-Wformat-nonliteral. Add --Wno-format-y2k.
* gl/, gl/m4/: New.
* gpg-agent.c: Include setenv.h.
* Makefile.am (AM_CPPFLAGS): Added.
* util.h: Add some includes for gnulib.
(ttyname, isascii): Define them inline.
* fseeko.c, ftello.c: Removed.
* strsep.c, mkdtemp.c: Removed.
* ttyname.c, isascii.c: Removed.
* mkdtemp.c: Removed.
* exec.c: Include mkdtemp.h
* keybox-file.c (ftello) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/ftello.c.
* keybox-update.c (fseeko) [!HAVE_FSEEKO]: New replacement
function. Copied from ../common/iobuf.c.
* scdaemon.c: Include mkdtemp.h.
* misc.c: Include setenv.h.
* symcryptrun.c: Include mkdtemp.h.
2005-06-01 17:46:01 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl \
|
2003-08-05 19:11:04 +02:00
|
|
|
$(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
|
|
|
|
|
|
|
|
noinst_LIBRARIES = libkeybox.a
|
|
|
|
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)
|
|
|
|
|
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)
|
2010-03-10 13:24:58 +01:00
|
|
|
kbxutil_LDADD = ../common/libcommon.a ../gl/libgnu.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
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
$(PROGRAMS) : ../common/libcommon.a ../gl/libgnu.a
|