docs: install: Fix a minor typo
[netsniff-ng.git] / Cmds
blobd381a2282caf0a310974a9e15cbf8dc73ada5fce
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_ARCHIVE = git archive --prefix=netsniff-ng-$(VERSION_SHORT)/ v$(VERSION_SHORT) | \
41               $(1) > ../netsniff-ng-$(VERSION_SHORT).tar.$(2)
42 GIT_TAG = git tag -a v$(VERSION_SHORT) -s -m "$(VERSION_SHORT) release"
43 GIT_LOG = git shortlog -n $(shell git tag | tail -n2 | head -n1)..HEAD
44 GIT_REM = git ls-files -o | xargs rm -rf
45 GIT_PEOPLE = git log --no-merges $(shell git tag | tail -n2 | head -n1)..HEAD | grep Author: | cut -d: -f2 | \
46              cut -d\< -f1 | sort | uniq -c | sort -nr
47 GIT_VERSION = git describe --always
49 # GPG related
50 GPG_SIGN = gpg -a --output ../netsniff-ng-$(VERSION_SHORT).tar.$(1).sign --detach-sig \
51                 ../netsniff-ng-$(VERSION_SHORT).tar.$(1)