build: flowtop: Only build ioops with GeoIP support enabled
[netsniff-ng.git] / Cmds
blob9d2675f2d7c0d7ddd7bd429600ffbad20749d962
1 # Be quite 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 # GCC related stuff
8 LD = $(Q)echo -e "  LD\t$@" && $(CCACHE) $(CROSS_COMPILE)gcc
9 CCNQ = $(CCACHE) $(CROSS_COMPILE)gcc
10 CC = $(Q)echo -e "  CC\t$<" && $(CCNQ)
11 ifeq ($(DEBUG), 1)
12   STRIP = $(Q)true
13 else
14   STRIP = $(Q)echo -e "  STRIP\t$@" && $(CROSS_COMPILE)strip
15 endif
17 # Flex/bison related
18 LEX = $(Q)echo -e "  LEX\t$<" && flex
19 YAAC = $(Q)echo -e "  YAAC\t$<" && bison
21 # Installation related
22 INST = echo -e "  INST\t$(1)" && install -d $(2) && \
23         install --mode=644 -DC $(1) $(2)/$(shell basename $(1))
25 ifeq ("$(origin PREFIX)", "command line")
26   INSTX = echo -e "  INST\t$(1)" && install -d $(2) && \
27         install -C $(1) $(2)/$(shell basename $(1))
28 else
29   INSTX = echo -e "  INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
30 endif
32 MKDIR = echo -e  "  MKDIR\t$(1)" && mkdir -p $(1)
34 RM = echo -e "  RM\t$(1)" && rm -rf $(1)
35 RMDIR = echo -e "  RM\t$(1)" && rmdir --ignore-fail-on-non-empty $(1) 2> /dev/null || true
37 GZIP = gzip --best -c
39 # Git related
40 GIT_LAST_TAG = git describe --abbrev=0 v$(VERSION_SHORT)^
41 GIT_ARCHIVE = git archive --prefix=netsniff-ng-$(VERSION_SHORT)/ v$(VERSION_SHORT) | \
42               $(1) > ../netsniff-ng-$(VERSION_SHORT).tar.$(2)
43 GIT_TAG = git tag -a v$(VERSION_SHORT) -s -m "$(VERSION_SHORT) release"
44 GIT_LOG = git shortlog -n $(shell $(GIT_LAST_TAG))..HEAD
45 GIT_REM = git ls-files -o | xargs rm -rf
46 GIT_PEOPLE = git log --no-merges $(shell $(GIT_LAST_TAG))..HEAD | grep Author: | cut -d: -f2 | \
47              cut -d\< -f1 | sort | uniq -c | sort -nr
48 GIT_VERSION = git describe --always
50 # GPG related
51 GPG_SIGN = gpg -a --output ../netsniff-ng-$(VERSION_SHORT).tar.$(1).sign --detach-sig \
52                 ../netsniff-ng-$(VERSION_SHORT).tar.$(1)