From deddda5d295736afff729a3e22f22c5d0c5b82d2 Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Wed, 14 Jan 2015 16:25:27 -0800 Subject: [PATCH] Autogenerate AUTHORS file for distribution repo Signed-off-by: Stephen J Day --- .mailmap | 4 ++++ AUTHORS | 8 ++++++++ Makefile | 15 +++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 .mailmap create mode 100644 AUTHORS create mode 100644 Makefile diff --git a/.mailmap b/.mailmap new file mode 100644 index 00000000..89285586 --- /dev/null +++ b/.mailmap @@ -0,0 +1,4 @@ +Stephen J Day Stephen Day +Stephen J Day Stephen Day +Olivier Gambier Olivier Gambier +Brian Bland Brian Bland \ No newline at end of file diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..842a13bf --- /dev/null +++ b/AUTHORS @@ -0,0 +1,8 @@ +Ahmet Alp Balkan +Andrey Kostov +Anton Tiurin +Arnaud Porterie +Brian Bland +Josh Hawn +Olivier Gambier +Stephen J Day diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..d853daca --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# This project makefile is around for generating peices of documentation and +# code. For most purposes, running it is not necessary. + +.PHONY: clean +.DEFAULT: default + +default: + @echo Please read the make targets before using this Makefile. It is \ + currently only used for documentation and autogenerated files. + +AUTHORS: .mailmap .git/ORIG_HEAD .git/FETCH_HEAD .git/HEAD + git log --format='%aN <%aE>' | sort -fu >> $@ + +clean: + rm -rf AUTHORS \ No newline at end of file