diff options
author | VirtualTam <virtualtam@flibidi.net> | 2017-01-06 18:34:36 +0100 |
---|---|---|
committer | VirtualTam <virtualtam+github@flibidi.net> | 2017-01-07 14:49:39 +0100 |
commit | 3ee5c69777af4d5b20cfd8e89e1cc3cf13f640eb (patch) | |
tree | dbf45980d63c690a3e8474bda21e90fdab863fa1 /Makefile | |
parent | ee6f4b64a91d76070f930cdf7602ab4686714c7a (diff) | |
download | Shaarli-3ee5c69777af4d5b20cfd8e89e1cc3cf13f640eb.tar.gz Shaarli-3ee5c69777af4d5b20cfd8e89e1cc3cf13f640eb.tar.zst Shaarli-3ee5c69777af4d5b20cfd8e89e1cc3cf13f640eb.zip |
Add an AUTHORS file, simplify COPYING, bump year to 2017
Added:
- AUTHORS file listing Shaarli contributors
- mailmap information to group a Git author's different aliases
- Makefile target to list contributors from Git commit data
Changed:
- Simplify COPYING by using a single "Shaarli Community" entry
- Bump year to 2017
See:
- man git-shortlog
- https://www.kernel.org/pub/software/scm/git/docs/git-shortlog.html#_mapping_authors
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -169,6 +169,12 @@ clean: | |||
169 | @git clean -df | 169 | @git clean -df |
170 | @rm -rf sandbox | 170 | @rm -rf sandbox |
171 | 171 | ||
172 | ### generate the AUTHORS file from Git commit information | ||
173 | authors: | ||
174 | @cp .github/mailmap .mailmap | ||
175 | @git shortlog -sne > AUTHORS | ||
176 | @rm .mailmap | ||
177 | |||
172 | ### generate Doxygen documentation | 178 | ### generate Doxygen documentation |
173 | doxygen: clean | 179 | doxygen: clean |
174 | @rm -rf doxygen | 180 | @rm -rf doxygen |
@@ -214,4 +220,4 @@ htmlpages: | |||
214 | -o doc/$$base.html $$file; \ | 220 | -o doc/$$base.html $$file; \ |
215 | done; | 221 | done; |
216 | 222 | ||
217 | htmldoc: doc htmlsidebar htmlpages | 223 | htmldoc: authors doc htmlsidebar htmlpages |