1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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
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