enable check/fix scripts in traditional makefile
This commit is contained in:
18
src/Makefile
18
src/Makefile
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user