Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ $(DOCDIR)/dependency_graph.dot: $(DOCDIR)/dependency_graph.pre

html: build $(DOCDIR)/dependency_graph.dot
etc/rocqnavi_generate-hierarchy-graph.sh $(DOCDIR)/hierarchy_graph.dot
rm -rf $(DOCDIR) # clean doc dir if exists
mkdir -p $(DOCDIR)
find . -not -path '*/.*' -name "*.v" -or -name "*.glob" | xargs rocqnavi \
find . -name "*.v" -or -name "*.glob" | grep -v "/\." | grep -v "_opam/"
find . -name "*.v" -or -name "*.glob" | grep -v "/\." | grep -v "_opam/" | xargs rocqnavi \
-title "Mathcomp Analysis" \
-d $(DOCDIR) -base mathcomp -Q theories analysis \
-coqlib https://rocq-prover.org/doc/V8.20.1/stdlib/ \
Expand Down
Loading