From 7fea08e736be38cf55eb3c49378cdf14396aabc8 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Thu, 6 Dec 2018 14:29:06 +0300 Subject: [PATCH] src: The `test` build target depends on `kak` Not having the `test` target (in the Makefile) depend on the `kak` one prevents users from running commands that make use of parallelism, e.g.: $ make -j all test The above command sometimes results in the test suite running before the binary has been compiled and symlinked, resulting in failures. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 7771f775..c44be63e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -102,7 +102,7 @@ man: ../doc/kak.1 endif check: test -test: +test: kak cd ../test && ./run TAGS: tags