curvetun: Fix issues detected by the Coverity scanner
[netsniff-ng.git] / Cmds
blob67d34cf9a601cd987228d2f6c2b2de21a40bdedb
1 # Be quiet and do not echo the cmd
2 Q = @
4 # Try to use bash as shell for make
5 SHELL := $(shell if [ -x /bin/bash ]; then echo /bin/bash; else echo /bin/sh; fi)
7 # Compiler related stuff
8 LDQ = $(Q)echo -e "  LD\t$@" && $(CCACHE) $(CC)
9 CCNQ = $(CCACHE) $(CC)
10 CCQ = $(Q)echo -e "  CC\t$<" && $(CCNQ)
12 # sparse related
13 C =
14 ifeq ($(C), 1)
15   CHECK = $(Q)echo -e "  CHECK\t$<" && sparse
16 else
17   CHECK = $(Q)true
18 endif
20 # Flex/bison related
21 LEX = $(Q)echo -e "  LEX\t$<" && flex
22 YAAC = $(Q)echo -e "  YAAC\t$<" && bison
24 # Installation related
25 INST = echo -e "  INST\t$(1)" && install -d $(2) && \
26         install --mode=644 -DC $(1) $(2)/$(shell basename $(1))
28 ifeq ("$(origin PREFIX)", "command line")
29   INSTX = echo -e "  INST\t$(1)" && install -d $(2) && \
30         install -C $(1) $(2)/$(shell basename $(1))
31 else
32   INSTX = echo -e "  INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
33 endif
35 MKDIR = echo -e  "  MKDIR\t$(1)" && mkdir -p $(1)
37 RM = echo -e "  RM\t$(1)" && rm -rf $(1)
38 RMDIR = echo -e "  RM\t$(1)" && rmdir --ignore-fail-on-non-empty $(1) 2> /dev/null || true
40 GZIP = gzip --best -c
42 # Git related
43 GIT_LAST_TAG = git describe --abbrev=0 v$(VERSION_SHORT)^
44 GIT_ARCHIVE = git archive --prefix=netsniff-ng-$(VERSION_SHORT)/ v$(VERSION_SHORT) | \
45               $(1) > ../netsniff-ng-$(VERSION_SHORT).tar.$(2)
46 GIT_TAG = git tag -a v$(VERSION_SHORT) -s -m "$(VERSION_SHORT) release"
47 GIT_LOG = git shortlog -n $(shell $(GIT_LAST_TAG))..HEAD
48 GIT_REM = git ls-files -o | xargs rm -rf
49 GIT_PEOPLE = git log --no-merges $(shell $(GIT_LAST_TAG))..HEAD | grep Author: | cut -d: -f2 | \
50              cut -d\< -f1 | sort | uniq -c | sort -nr
51 GIT_VERSION = git describe --always
53 # GPG related
54 GPG_SIGN = gpg -a --output ../netsniff-ng-$(VERSION_SHORT).tar.$(1).sign --detach-sig \
55                 ../netsniff-ng-$(VERSION_SHORT).tar.$(1)