From 7f443778f17fa8e7474992b710b4fb3f66ad469e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 29 Aug 2019 12:46:06 +0200 Subject: [PATCH] build: add help to make style/style_check --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cf105fd1b..24f776043 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,9 @@ PY_FILES = $(shell find . -type f -name '*.py' | grep -f ./tools/style.py.incl C_FILES = $(shell find . -type f -name '*.[ch]' | grep -f ./tools/style.c.include | grep -v -f ./tools/style.c.exclude ) -style_check: pystyle_check cstyle_check +style_check: pystyle_check cstyle_check ## run all style checks (C+Py) -style: pystyle cstyle +style: pystyle cstyle ## apply all code styles (C+Py) pystyle_check: ## run code style check on application sources and tests flake8 --version