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.
This commit is contained in:
Frank LENORMAND 2018-12-06 14:29:06 +03:00
parent b897a18aa6
commit 7fea08e736

View File

@ -102,7 +102,7 @@ man: ../doc/kak.1
endif
check: test
test:
test: kak
cd ../test && ./run
TAGS: tags