Lines Matching refs:format
275 CLANG_FORMAT ?= clang-format
281 %.format : %
284 format.ch := $(shell git ls-files '*.[ch]pp' '*.[ch]')
285 format.py := $(filter-out tests/junit-xml/junit_xml/__init__.py, $(shell git ls-files '*.py'))
286 format.ot := $(shell git ls-files '*.md')
288 format-c :
289 $(call quiet,CLANG_FORMAT) $(FORMAT_OPTS) $(format.ch)
291 format-py :
292 $(call quiet,AUTOPEP8) $(AUTOPEP8_OPTS) $(format.py)
294 format-ot :
295 $(call quiet,SED) $(SED_FMT_OPTS) $(format.ot)
297 format : format-c format-py format-ot target