aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
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