diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-08-12 23:13:54 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-08-12 23:18:45 +0200 |
commit | fcab1ec1a1a71265d86ae0b615a091c674041654 (patch) | |
tree | bfc5aa5bc9908bf479afcfe39db1794c28fb4ace /Cmds | |
parent | bce6f96faa3fbb50538712436ea2f4771d6491f9 (diff) |
build: Add Makefile target for Coverity scanner
Add a Makefile target to build and upload a snapshot of netsniff-ng to
the Coverity scanner. The variables COV_EMAIL and COV_PASSWD need to be
set accordingly:
make coverity COV_EMAIL=tklauser@distanz.ch COV_PASSWD=...
Currently the sub-make which is part of the cov-built call issues
warnings about undefined variables from the template. This can be
ignored, the build works just fine.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'Cmds')
-rw-r--r-- | Cmds | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,8 @@ else INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1)) endif +MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1) + RM = echo -e " RM\t$(1)" && rm -rf $(1) RMDIR = echo -e " RM\t$(1)" && rmdir --ignore-fail-on-non-empty $(1) 2> /dev/null || true @@ -39,3 +41,4 @@ GIT_LOG = git shortlog -n $(shell git tag | tail -n2 | head -n1)..HEAD GIT_REM = git ls-files -o | xargs rm -rf GIT_PEOPLE = git log --no-merges $(shell git tag | tail -n2 | head -n1)..HEAD | grep Author: | cut -d: -f2 | \ cut -d\< -f1 | sort | uniq -c | sort -nr +GIT_VERSION = git describe --always |