diff --git a/Makefile.lint b/Makefile.lint index a701802..20bb4cb 100644 --- a/Makefile.lint +++ b/Makefile.lint @@ -13,7 +13,7 @@ deadlinks: podchecker: @echo "=======> Check PODs for syntax errors" - @podchecker *.pod >/dev/null + @podchecker pod/*.pod >/dev/null shellcheck: @echo "=======> Check shell scripts for syntax errors" @@ -23,11 +23,11 @@ shellcheck: cppcheck: @echo "=======> Static C/C++ code analysis" @cppcheck --quiet --enable=all --check-level=exhaustive \ - --suppress=missingIncludeSystem . + --suppress=missingIncludeSystem src flawfinder: @echo "=======> Check for potential security flaws" - @flawfinder --quiet -D . + @flawfinder --quiet -D src longlines: @echo "=======> Check for long lines"