2001-11-24 18:43:43 +01:00
|
|
|
# Makefile for common gnupg modules
|
|
|
|
# Copyright (C) 2001 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
|
|
|
|
# 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
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2002-06-12 11:56:05 +02:00
|
|
|
EXTRA_DIST = mkerrors mkerrtok
|
2001-11-24 18:43:43 +01:00
|
|
|
#INCLUDES =
|
2002-06-12 11:56:05 +02:00
|
|
|
BUILT_SOURCES = errors.c
|
2001-11-24 18:43:43 +01:00
|
|
|
|
|
|
|
noinst_LIBRARIES = libcommon.a
|
|
|
|
|
2002-08-16 16:24:12 +02:00
|
|
|
AM_CPPFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
|
2001-12-18 20:35:12 +01:00
|
|
|
|
2001-11-24 18:43:43 +01:00
|
|
|
libcommon_a_SOURCES = \
|
|
|
|
util.h i18n.h \
|
|
|
|
errors.c errors.h \
|
2002-01-19 21:58:41 +01:00
|
|
|
maperror.c \
|
2002-02-12 21:42:25 +01:00
|
|
|
sysutils.c sysutils.h \
|
2002-05-14 18:51:00 +02:00
|
|
|
cryptmiss.c \
|
2002-08-09 20:13:41 +02:00
|
|
|
gettime.c \
|
|
|
|
signal.c
|
|
|
|
|
2001-11-24 18:43:43 +01:00
|
|
|
|
2002-01-23 16:49:58 +01:00
|
|
|
libcommon_a_LIBADD = @LIBOBJS@
|
2001-11-24 18:43:43 +01:00
|
|
|
|
2002-06-12 11:56:05 +02:00
|
|
|
errors.c : errors.h mkerrors mkerrtok
|
2001-11-24 18:43:43 +01:00
|
|
|
$(srcdir)/mkerrors < $(srcdir)/errors.h > errors.c
|
2002-06-12 11:56:05 +02:00
|
|
|
$(srcdir)/mkerrtok < $(srcdir)/errors.h >> errors.c
|
2001-12-18 20:35:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|