aboutsummaryrefslogtreecommitdiff
path: root/docs/htmldoc/Makefile
diff options
context:
space:
mode:
authorMaxime Dénès2019-10-21 15:49:12 +0200
committerGitHub2019-10-21 15:49:12 +0200
commit0aae7741a280d76c7fb918152e1be30b71a9e5b7 (patch)
treefad3b63006f06605db96e13ad88d4e956e8df380 /docs/htmldoc/Makefile
parent5c4328261edace427e7cad73fdca288f6d73b87d (diff)
parent6b59540a2460633df4e3d8347cb4dfe2fb3a3afb (diff)
Merge pull request #365 from math-comp/ghpages-redirect
Redirects to math-comp.github.io
Diffstat (limited to 'docs/htmldoc/Makefile')
-rw-r--r--docs/htmldoc/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/htmldoc/Makefile b/docs/htmldoc/Makefile
deleted file mode 100644
index e4ef690..0000000
--- a/docs/htmldoc/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-H=@
-
-ifeq "$(COQBIN)" ""
-COQBIN=$(dir $(shell which coqtop))/
-endif
-
-SRC=$(shell grep 'v *$$' ../../mathcomp/Make)
-
-all:
- $(H) git diff-index HEAD ||\
- (echo error: uncommitted files; exit 1)
- $(H) cd ../../mathcomp;\
- $(COQBIN)/coqdep -R . mathcomp $(SRC) 2>/dev/null |\
- grep -v vio: > ../docs/htmldoc/depend
- $(H) cat depend | ./buildlibgraph cytoscape $(SRC) > depend.js
- $(H) . ../../etc/utils/builddoc_lib.sh; \
- cd ../../mathcomp; mangle_sources $(SRC)
- $(H) make -C ../../mathcomp clean
- $(H) make -C ../../mathcomp -j2
- $(H) cd ../../mathcomp; \
- $(COQBIN)/coqdoc -t "Mathematical Components"\
- -g --utf8 -R . mathcomp \
- --parse-comments \
- --multi-index $(SRC) -d ../docs/htmldoc/
- $(H) cp ../../etc/artwork/coqdoc.css .
- $(H) cd ../../mathcomp; git checkout $(SRC)
-
-