summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2018-12-06 14:29:06 +0300
committerFrank LENORMAND <lenormf@gmail.com>2018-12-06 14:34:29 +0300
commit7fea08e736be38cf55eb3c49378cdf14396aabc8 (patch)
tree59425813824a19cab1db343f49eff852f30c1631 /src
parentb897a18aa6afb0a5f95fd89cfd30664928c8b549 (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
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