diff options
author | Werner Koch <[email protected]> | 2016-06-17 19:16:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-06-17 19:16:37 +0000 |
commit | ce1689ea0720552ac900d7b2c4139caf24452018 (patch) | |
tree | b0dd21e52526ec059261bc04bbdc70a728556fea /tests/gpgscm | |
parent | gpgscm: Silence compiler warnings. (diff) | |
download | gnupg-ce1689ea0720552ac900d7b2c4139caf24452018.tar.gz gnupg-ce1689ea0720552ac900d7b2c4139caf24452018.zip |
tests: Make make distcheck work again.
* Makefile.am (tests): Remove test code which would led to doubling
calls to for e.g. "make distclean".
* tests/Makefile.am: Typo fixes.
* tests/gpgscm/Makefile.am (EXTRA_DIST): Fix name of License file.
Add repl.scm.
(check): Replace by check-local because check is a standard automake
target.
* tests/openpgp/Makefile.am (TESTS_ENVIRONMENT): Replace gmake0sim by
automake generated macro.
(EXTRA_DIST): Add defs.scm
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'tests/gpgscm')
-rw-r--r-- | tests/gpgscm/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/gpgscm/Makefile.am b/tests/gpgscm/Makefile.am index 1fb964781..e57a4bbe4 100644 --- a/tests/gpgscm/Makefile.am +++ b/tests/gpgscm/Makefile.am @@ -18,11 +18,12 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. EXTRA_DIST = \ - COPYING \ + LICENSE.TinySCHEME \ Manual.txt \ ffi.scm \ init.scm \ lib.scm \ + repl.scm \ t-child.scm \ tests.scm @@ -31,6 +32,8 @@ include $(top_srcdir)/am/cmacros.am AM_CFLAGS = +CLEANFILES = + bin_PROGRAMS = gpgscm noinst_PROGRAMS = t-child @@ -51,7 +54,6 @@ t_child_SOURCES = t-child.c # important for things like make -j2. $(PROGRAMS): $(common_libs) -.PHONY: check -check: gpgscm$(EXEEXT) t-child$(EXEEXT) +check-local: gpgscm$(EXEEXT) t-child$(EXEEXT) EXEEXT=$(EXEEXT) GPGSCM_PATH=$(srcdir) \ ./gpgscm$(EXEEXT) $(srcdir)/t-child.scm |