summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorArtyom Poptsov <poptsov.artyom@gmail.com>2014-01-28 21:05:58 +0400
committerArtyom Poptsov <poptsov.artyom@gmail.com>2014-01-28 21:05:58 +0400
commit5e2de26a06e435d28342dc5acf7b83fc0538756f (patch)
tree8f658329361622b0bd3f7f10bf3a56b5a50d98ef /Makefile.am
parenttests/server.scm: `server-set!', check `hostkey' option. (diff)
downloadguile-ssh-5e2de26a06e435d28342dc5acf7b83fc0538756f.tar.gz
Use the standard `check' target instead of `tests'.
* configure.ac (AM_INIT_AUTOMAKE): Add `color-tests' option. * Makefile.am (TESTS): Fix a bug: use value of `SCM_TESTS' variable, not its name. (tests): Remove target. Use `make check' instead. (CLEANFILES): Add auxiliary logs produced by tests.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index fb8a861..1c1ece8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -29,7 +29,7 @@ SCM_TESTS = \
tests/auth.scm \
tests/client-server.scm
-TESTS = SCM_TESTS
+TESTS = ${SCM_TESTS}
TEST_EXTENSIONS = .scm
@@ -38,8 +38,4 @@ AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
SCM_LOG_COMPILER = $(GUILE)
AM_SCM_LOG_FLAGS = -L "$(abs_top_srcdir)" --no-auto-compile
-.PHONY: tests
-
-tests: $(SCM_TESTS:%.scm=%.log)
-
-CLEANFILES = tests/*.log
+CLEANFILES = $(SCM_TESTS:tests/%.scm=%.log)