From fc20c60f74463da0fa02401e4d8b8d0338423a32 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Sat, 27 Jan 2018 11:48:38 -0800 Subject: [PATCH] Add AUTHORS file --- AUTHORS.txt | 2 ++ Makefile | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 AUTHORS.txt diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 0000000..062495d --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1,2 @@ +Kevin Burke +Sergey Lukjanov diff --git a/Makefile b/Makefile index 5a18449..cf9b6c7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ BUMP_VERSION := $(GOPATH)/bin/bump_version MEGACHECK := $(GOPATH)/bin/megacheck +WRITE_MAILMAP := $(GOPATH)/bin/write_mailmap IGNORES := 'github.com/kevinburke/ssh_config/config.go:U1000 github.com/kevinburke/ssh_config/config.go:S1002 github.com/kevinburke/ssh_config/token.go:U1000' @@ -19,3 +20,10 @@ $(BUMP_VERSION): release: $(BUMP_VERSION) $(BUMP_VERSION) minor config.go + +force: ; + +AUTHORS.txt: force | $(WRITE_MAILMAP) + $(WRITE_MAILMAP) > AUTHORS.txt + +authors: AUTHORS.txt