2002-10-19 07:55:27 +00:00
|
|
|
# Makefile.am - main makefile for NewPG/GnuPG
|
|
|
|
# Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
#
|
2002-06-29 14:15:02 +00:00
|
|
|
# This file is part of GnuPG.
|
2002-10-19 07:55:27 +00:00
|
|
|
#
|
2002-06-29 14:15:02 +00: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
|
|
|
|
# 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
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
1997-11-18 14:06:00 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2002-10-19 07:55:27 +00:00
|
|
|
EXTRA_DIST = autogen.sh
|
|
|
|
|
|
|
|
if BUILD_GPGSM
|
|
|
|
sm = sm
|
1999-09-17 10:58:20 +00:00
|
|
|
else
|
2002-10-19 07:55:27 +00:00
|
|
|
sm =
|
|
|
|
endif
|
|
|
|
if BUILD_AGENT
|
|
|
|
agent = agent
|
|
|
|
else
|
|
|
|
agent =
|
|
|
|
endif
|
|
|
|
if BUILD_SCDAEMON
|
|
|
|
scd = scd
|
|
|
|
else
|
|
|
|
scd =
|
1999-09-17 10:58:20 +00:00
|
|
|
endif
|
|
|
|
|
2002-10-19 07:55:27 +00:00
|
|
|
SUBDIRS = intl jnlib assuan common kbx ${sm} ${agent} ${scd} po doc tests
|
1998-02-18 18:52:59 +00:00
|
|
|
|
1998-10-17 14:47:14 +00:00
|
|
|
|
2002-10-19 07:55:27 +00:00
|
|
|
dist-hook:
|
|
|
|
@set -e; echo "$(VERSION)" > $(distdir)/VERSION
|
2002-06-29 14:15:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|