summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index e6dbd572..cf94e352 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -184,6 +184,14 @@ check: tests tests_run
tests: $(tests_targets)
tests_run: $(tests_targets_ok)
+STATIC_CHECKERS := nullability.NullableDereferenced nullability.NullablePassedToNonnull nullability.NullableReturnedFromNonnull optin.portability.UnixAPI valist.CopyToSelf valist.Uninitialized valist.Unterminated
+STATIC_SCAN_FLAGS := --force-analyze-debug-code -o $(objdir)/static-scan/ $(addprefix -enable-checker ,$(STATIC_CHECKERS))
+
+static-scan:
+ $(E)echo Running static code analysis
+ $(Q)$(MAKE) clean
+ $(Q)scan-build $(STATIC_SCAN_FLAGS) $(MAKE) -$(MAKEFLAGS)
+
tags:
cd $(srcdir) ; etags -lc `find $(dirs) -name *.[chY]`