make files: add a make check target, that runs v test-all locally

This commit is contained in:
Delyan Angelov 2022-05-01 13:38:30 +03:00
parent 91c1157810
commit aed2d0caf2
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
3 changed files with 22 additions and 8 deletions

View file

@ -76,7 +76,7 @@ endif
endif
endif
.PHONY: all clean fresh_vc fresh_tcc check_for_working_tcc
.PHONY: all clean check fresh_vc fresh_tcc check_for_working_tcc
ifdef prod
VFLAGS+=-prod
@ -164,3 +164,5 @@ selfcompile-static:
install:
@echo 'Please use `sudo ./v symlink` instead.'
check:
$(V) test-all