commit a796095218b0524f957f76d6f3b501ebda700d44
parent abdc2ba0c764c527aaa2ed9fe42db27d71a10bc2
Author: Laslo Hunhold <dev@frign.de>
Date: Tue, 15 Nov 2022 21:08:50 +0100
Add a check make-target as an alias for test
It's one extra line but helps a bit as the "community" seems to be a bit
split on how to call it (test or check).
Signed-off-by: Laslo Hunhold <dev@frign.de>
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -308,6 +308,8 @@ $(MAN7:=.7):
benchmark: $(BENCHMARK)
for m in $(BENCHMARK); do ./$$m; done
+check: test
+
test: $(TEST)
for m in $(TEST); do ./$$m; done