Add a check make-target as an alias for test - libgrapheme - unicode string library
 (HTM) git clone git://git.suckless.org/libgrapheme
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit a796095218b0524f957f76d6f3b501ebda700d44
 (DIR) parent abdc2ba0c764c527aaa2ed9fe42db27d71a10bc2
 (HTM) 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:
         M Makefile                            |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
 (DIR) 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