branch: elpa/with-editor commit 31473211514fd29e3e86b107ec30ea04bc2563c4 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Remove AUTHORS.md This is part of my effort to make the Makefiles of packages more similar to each other. Except for Magit, the other packages do not come with such a file. --- Makefile | 3 --- docs/AUTHORS.md | 17 ----------------- docs/Makefile | 11 ----------- 3 files changed, 31 deletions(-) diff --git a/Makefile b/Makefile index 41fa92ef20..623c3486ad 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,6 @@ help: $(info make html - generate html manual file) $(info make html-dir - generate html manual directory) $(info make pdf - generate pdf manual) - $(info make authors - generate AUTHORS.md) $(info make stats - generate statistics) $(info make publish - publish snapshot manuals) $(info make release - publish release manuals) @@ -36,8 +35,6 @@ html-dir: @$(MAKE) -C docs html-dir pdf: @$(MAKE) -C docs pdf -authors: - @$(MAKE) -C docs authors stats: @$(MAKE) -C docs stats diff --git a/docs/AUTHORS.md b/docs/AUTHORS.md deleted file mode 100644 index 1f4d45340f..0000000000 --- a/docs/AUTHORS.md +++ /dev/null @@ -1,17 +0,0 @@ -Authors -======= - -- Barak A. Pearlmutter <barak+...@pearlmutter.net> -- Christian Johansson <christ...@cvj.se> -- Itai Y. Efrat <itai3...@gmail.com> -- Jonas Bernoulli <jo...@bernoul.li> -- Justin Burkett <jus...@burkett.cc> -- Kyle Meyer <k...@kyleam.com> -- Lele Gaifax <l...@metapensiero.it> -- Mario Rodas <mar...@users.noreply.github.com> -- Mark Shroyer <m...@shroyer.name> -- Noam Postavsky <npost...@users.sourceforge.net> -- Philipp Stephani <p...@google.com> -- Rémi Vanicat <vani...@debian.org> -- Stéphane Soppera <sopp...@users.noreply.github.com> -- Suvayu Ali <fatkasuvayu+li...@gmail.com> diff --git a/docs/Makefile b/docs/Makefile index ac2c46f421..15c20aa42d 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -91,14 +91,3 @@ CLEAN = $(PKG).info dir $(PKG) $(PKG).html $(PKG).pdf clean: @printf "Cleaning docs/*...\n" @rm -rf $(CLEAN) - -.PHONY: authors AUTHORS.md -authors: AUTHORS.md - -AUTHORS.md: - @ printf "Authors\n=======\n\n" > $@ - @ ( printf "%s\n" "- Barak A. Pearlmutter <barak+...@pearlmutter.net>" && \ - printf "%s\n" "- Lele Gaifax <l...@metapensiero.it>" && \ - printf "%s\n" "- Rémi Vanicat <vani...@debian.org>" && \ - git log --pretty=format:'- %aN <%aE>' \ - ) | sort -u >> $@