2011-01-03 18:56:41 +01:00
|
|
|
# Makefile.am - main makefile for GnuPG
|
|
|
|
# Copyright (C) 2001, 2004, 2010 Free Software Foundation, Inc.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2002-06-29 16:15:02 +02:00
|
|
|
# This file is part of GnuPG.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2002-06-29 16:15:02 +02:00
|
|
|
# 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
|
2002-06-29 16:15:02 +02:00
|
|
|
# (at your option) any later version.
|
2011-02-04 12:57:53 +01:00
|
|
|
#
|
2002-06-29 16:15:02 +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
|
|
|
#
|
2002-06-29 16:15:02 +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/>.
|
2002-06-29 16:15:02 +02:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
* 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
|
|
|
ACLOCAL_AMFLAGS = -I m4 -I gl/m4
|
2007-07-04 21:49:40 +02:00
|
|
|
AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
|
2011-12-01 10:51:36 +01:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-symcryptrun --enable-mailto --enable-gpgtar
|
2003-04-29 12:37:24 +02:00
|
|
|
|
2011-12-01 10:51:36 +01:00
|
|
|
EXTRA_DIST = scripts/config.rpath scripts/potomo autogen.sh README.GIT \
|
|
|
|
ChangeLog-2011 po/ChangeLog-2011 scripts/ChangeLog-2011 \
|
|
|
|
scripts/gitlog-to-changelog \
|
|
|
|
scripts/git-log-fix scripts/git-log-footer
|
2011-02-04 12:57:53 +01:00
|
|
|
DISTCLEANFILES = g10defs.h
|
2002-10-19 09:55:27 +02:00
|
|
|
|
2004-07-20 20:41:49 +02:00
|
|
|
if BUILD_GPGSM
|
|
|
|
kbx = kbx
|
|
|
|
else
|
|
|
|
kbx =
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
if BUILD_GPG
|
|
|
|
gpg = g10
|
2010-04-14 16:39:16 +02:00
|
|
|
if !HAVE_W32CE_SYSTEM
|
2011-02-04 12:57:53 +01:00
|
|
|
keyserver =
|
2010-04-14 16:39:16 +02:00
|
|
|
endif
|
2003-06-05 09:14:21 +02:00
|
|
|
else
|
|
|
|
gpg =
|
2011-02-04 12:57:53 +01:00
|
|
|
keyserver =
|
2003-06-05 09:14:21 +02:00
|
|
|
endif
|
2002-10-19 09:55:27 +02:00
|
|
|
if BUILD_GPGSM
|
|
|
|
sm = sm
|
1999-09-17 12:58:20 +02:00
|
|
|
else
|
2002-10-19 09:55:27 +02:00
|
|
|
sm =
|
|
|
|
endif
|
|
|
|
if BUILD_AGENT
|
|
|
|
agent = agent
|
|
|
|
else
|
|
|
|
agent =
|
|
|
|
endif
|
|
|
|
if BUILD_SCDAEMON
|
|
|
|
scd = scd
|
|
|
|
else
|
|
|
|
scd =
|
1999-09-17 12:58:20 +02:00
|
|
|
endif
|
2009-09-23 12:28:41 +02:00
|
|
|
if BUILD_G13
|
|
|
|
g13 = g13
|
|
|
|
else
|
|
|
|
g13 =
|
|
|
|
endif
|
2010-06-09 18:53:51 +02:00
|
|
|
if BUILD_DIRMNGR
|
|
|
|
dirmngr = dirmngr
|
|
|
|
else
|
|
|
|
dirmngr =
|
|
|
|
endif
|
2006-09-18 15:23:18 +02:00
|
|
|
if BUILD_TOOLS
|
2006-09-27 16:56:26 +02:00
|
|
|
tools = tools
|
2006-09-18 15:23:18 +02:00
|
|
|
else
|
2006-09-27 16:56:26 +02:00
|
|
|
tools =
|
2006-09-18 15:23:18 +02:00
|
|
|
endif
|
|
|
|
if BUILD_DOC
|
2006-09-27 16:56:26 +02:00
|
|
|
doc = doc
|
2006-09-18 15:23:18 +02:00
|
|
|
else
|
2006-09-27 16:56:26 +02:00
|
|
|
doc =
|
2006-09-18 15:23:18 +02:00
|
|
|
endif
|
1999-09-17 12:58:20 +02:00
|
|
|
|
2004-12-15 15:15:54 +01:00
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
tests =
|
|
|
|
else
|
|
|
|
tests = tests
|
|
|
|
endif
|
|
|
|
|
2010-03-10 13:24:58 +01:00
|
|
|
SUBDIRS = m4 gl include common ${kbx} \
|
2010-06-09 18:53:51 +02:00
|
|
|
${gpg} ${keyserver} ${sm} ${agent} ${scd} ${g13} ${dirmngr} \
|
|
|
|
${tools} po ${doc} ${tests}
|
1998-10-17 16:47:14 +02:00
|
|
|
|
2008-03-27 14:18:19 +01:00
|
|
|
dist_doc_DATA = README
|
|
|
|
|
|
|
|
|
2011-12-01 10:51:36 +01:00
|
|
|
dist-hook: gen-ChangeLog
|
2003-07-04 11:40:19 +02:00
|
|
|
echo "$(VERSION)" > $(distdir)/VERSION
|
|
|
|
|
2010-10-18 20:19:45 +02:00
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
install-data-hook:
|
|
|
|
set -e; \
|
|
|
|
for i in $$($(top_srcdir)/scripts/potomo \
|
|
|
|
--get-linguas $(top_srcdir)/po) ; do \
|
|
|
|
$(MKDIR_P) "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES" || true; \
|
|
|
|
rm -f "$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" \
|
|
|
|
2>/dev/null || true; \
|
|
|
|
$(top_srcdir)/scripts/potomo $(top_srcdir)/po/$$i.po \
|
|
|
|
"$(DESTDIR)$(localedir)/$$i/LC_MESSAGES/gnupg2.mo" ; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
2011-12-01 10:51:36 +01:00
|
|
|
|
|
|
|
gen_start_date = 2011-12-01T06:00:00
|
|
|
|
.PHONY: gen-ChangeLog
|
|
|
|
gen-ChangeLog:
|
|
|
|
if test -d $(top_srcdir)/.git; then \
|
|
|
|
(cd $(top_srcdir) && \
|
|
|
|
./scripts/gitlog-to-changelog \
|
|
|
|
--amend=scripts/git-log-fix \
|
|
|
|
--since=$(gen_start_date) ) > $(distdir)/cl-t; \
|
|
|
|
cat $(top_srcdir)/scripts/git-log-footer >> $(distdir)/cl-t; \
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
stowinstall:
|
2006-10-23 16:02:13 +02:00
|
|
|
$(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/gnupg
|