enable check/fix scripts in traditional makefile

This commit is contained in:
Axel Kohlmeyer
2021-08-22 22:47:55 -04:00
parent 0c7cf3cdaa
commit 0f8b331d8f

View File

@ -474,6 +474,24 @@ tar:
@cd STUBS; $(MAKE)
@echo "Created $(ROOT)_src.tar.gz"
check-whitespace:
$(PYTHON) ../tools/coding_standard/whitespace.py ..
fix-whitespace:
$(PYTHON) ../tools/coding_standard/whitespace.py .. -f
check-permissions:
$(PYTHON) ../tools/coding_standard/permissions.py ..
fix-permissions:
$(PYTHON) ../tools/coding_standard/permissions.py .. -f
check-homepage:
$(PYTHON) ../tools/coding_standard/homepage.py ..
fix-homepage:
$(PYTHON) ../tools/coding_standard/homepage.py .. -f
# Package management
package: