added TAB checker script, to be added to the PR checker action

This commit is contained in:
mrdudz
2022-04-16 18:18:51 +02:00
parent 2eb20b3e8a
commit 4b492ed4e5
3 changed files with 27 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc html info samples test util
.PHONY: all mostlyclean clean install zip avail unavail bin lib doc html info samples test util check
.SUFFIXES:
@@ -24,6 +24,9 @@ samples:
test:
@$(MAKE) -C test --no-print-directory $@
check:
@$(MAKE) -C .github/checks --no-print-directory $@
util:
@$(MAKE) -C util --no-print-directory $@