diff options
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 |