2016-01-06 11:55:25 +01:00
|
|
|
# TinyScheme-based test driver.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 g10 Code GmbH
|
|
|
|
#
|
|
|
|
# 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 3 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
|
2016-11-05 12:02:19 +01:00
|
|
|
# along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2016-01-06 11:55:25 +01:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2016-06-17 21:16:37 +02:00
|
|
|
LICENSE.TinySCHEME \
|
2016-01-06 11:55:25 +01:00
|
|
|
Manual.txt \
|
|
|
|
ffi.scm \
|
|
|
|
init.scm \
|
|
|
|
lib.scm \
|
2017-03-20 10:21:06 +01:00
|
|
|
makefile.scm \
|
2016-06-17 21:16:37 +02:00
|
|
|
repl.scm \
|
2016-01-06 11:55:25 +01:00
|
|
|
t-child.scm \
|
2017-04-18 18:51:06 +02:00
|
|
|
xml.scm \
|
2017-02-15 16:03:12 +01:00
|
|
|
tests.scm \
|
2017-04-11 11:50:54 +02:00
|
|
|
gnupg.scm \
|
2017-02-15 16:03:12 +01:00
|
|
|
time.scm
|
2016-01-06 11:55:25 +01:00
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
|
|
|
AM_CFLAGS =
|
|
|
|
|
2016-06-17 21:16:37 +02:00
|
|
|
CLEANFILES =
|
|
|
|
|
2016-01-06 11:55:25 +01:00
|
|
|
bin_PROGRAMS = gpgscm
|
|
|
|
noinst_PROGRAMS = t-child
|
|
|
|
|
|
|
|
common_libs = ../$(libcommon)
|
|
|
|
commonpth_libs = ../$(libcommonpth)
|
|
|
|
|
|
|
|
gpgscm_CFLAGS = -imacros scheme-config.h \
|
|
|
|
$(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS)
|
|
|
|
gpgscm_SOURCES = main.c private.h ffi.c ffi.h ffi-private.h \
|
2017-03-23 15:21:36 +01:00
|
|
|
scheme-config.h scheme.c scheme.h scheme-private.h \
|
|
|
|
opdefines.h small-integers.h
|
2016-01-06 11:55:25 +01:00
|
|
|
gpgscm_LDADD = $(LDADD) $(common_libs) \
|
2016-07-15 12:28:46 +02:00
|
|
|
$(NETLIBS) $(LIBICONV) $(LIBREADLINE) $(LIBINTL) \
|
2016-01-06 11:55:25 +01:00
|
|
|
$(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS)
|
|
|
|
|
|
|
|
t_child_SOURCES = t-child.c
|
|
|
|
|
|
|
|
# Make sure that all libs are build before we use them. This is
|
|
|
|
# important for things like make -j2.
|
|
|
|
$(PROGRAMS): $(common_libs)
|
|
|
|
|
2016-06-17 21:16:37 +02:00
|
|
|
check-local: gpgscm$(EXEEXT) t-child$(EXEEXT)
|
2016-01-06 11:55:25 +01:00
|
|
|
EXEEXT=$(EXEEXT) GPGSCM_PATH=$(srcdir) \
|
|
|
|
./gpgscm$(EXEEXT) $(srcdir)/t-child.scm
|