-etc/checkpatch/config
\ No newline at end of file
+etc/checkpatch/checkpatch.conf
\ No newline at end of file
-etc/cpplint/CPPLINT.cfg
\ No newline at end of file
+etc/cpplint/cpplint.cfg
\ No newline at end of file
endif
-$(_LINT_c_checkpatch): %.lint-c.checkpatch.touch: %.c $(MK)
+$(_LINT_c_checkpatch): %.lint-c.checkpatch.touch: %.c $(CHECKPATCH_CONF) $(MK)
$(info $(INFO_)CHECKPATCH $@)
$(CHECKPATCH) $(CHECKPATCHFLAGS) -f $< >&2
$(TOUCH) $@
endif
-$(_LINT_c_clang_tidy): %.lint-c.clang-tidy.touch: %.c $(MK)
+$(_LINT_c_clang_tidy): %.lint-c.clang-tidy.touch: %.c $(CLANG_TIDY_CONF) $(MK)
$(info $(INFO_)CLANG_TIDY $@)
$(CLANG_TIDY) $(CLANG_TIDYFLAGS) $< -- $(CPPFLAGS) $(CLANGFLAGS) 2>&1 \
| $(SED) '/generated\.$$/d' >&2
endif
-$(_LINT_c_cppcheck): %.lint-c.cppcheck.touch: %.c $(MK)
+$(_LINT_c_cppcheck): %.lint-c.cppcheck.touch: %.c $(CPPCHECK_SUPPRESS) $(MK)
$(info $(INFO_)CPPCHECK $@)
$(CPPCHECK) $(CPPCHECKFLAGS) $<
$(TOUCH) $@
_LINT_c_cpplint := $(patsubst %.c, %.lint-c.cpplint.touch, $(_UNITS_ex_c))
-$(_LINT_c_cpplint): %.lint-c.cpplint.touch: %.c $(MK)
+$(_LINT_c_cpplint): %.lint-c.cpplint.touch: %.c $(CPPLINT_CONF) $(MK)
$(info $(INFO_)CPPLINT $@)
$(CPPLINT) $(CPPLINTFLAGS) $< >/dev/null
$(TOUCH) $@