From 8c6a7d082be7f361757a05a4cc34eb9089246ad5 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sat, 4 May 2024 21:35:38 +0000 Subject: [PATCH] Add "make check" FossilOrigin-Name: 685fcf4c953fa4ab5fc2454c683fb48408ac10a6f7e13d7d5b2ac85416ff025e --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index c488fab..c9ff557 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,9 @@ SUBDIRS = src tests include buildsys.mk +.PHONY: check + tests: src + +check: tests + ${MAKE} -C tests -s run