aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2017-01-06 18:34:36 +0100
committerVirtualTam <virtualtam+github@flibidi.net>2017-01-07 14:49:39 +0100
commit3ee5c69777af4d5b20cfd8e89e1cc3cf13f640eb (patch)
treedbf45980d63c690a3e8474bda21e90fdab863fa1 /Makefile
parentee6f4b64a91d76070f930cdf7602ab4686714c7a (diff)
downloadShaarli-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--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60aec9a0..f3065b77 100644
--- a/Makefile
+++ b/Makefile
@@ -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
173authors:
174 @cp .github/mailmap .mailmap
175 @git shortlog -sne > AUTHORS
176 @rm .mailmap
177
172### generate Doxygen documentation 178### generate Doxygen documentation
173doxygen: clean 179doxygen: 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
217htmldoc: doc htmlsidebar htmlpages 223htmldoc: authors doc htmlsidebar htmlpages