From 53730d70521a5ca224230ed0f7f4f3bf2b4bc8a4 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Sun, 23 Jun 2019 16:38:30 +0200 Subject: [PATCH] makefile: add a target to run check-github-commit-times.py --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 19fe435b..53c37310 100755 --- a/Makefile +++ b/Makefile @@ -25,9 +25,17 @@ syntaxerrors: @echo -e "\nSyntax errors:" @! sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep '\)\(|``|\)`' +################################# + contrib: @mv .github/.mailmap . && printf "|Commits | Author |\n| :---: | --- |\n" > AUTHORS.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap +check_github_commit_dates: + python3 tests/check-github-commit-dates.py + +################################# + + add: @#add a new entry @printf 'Software name: ' ;\