Skip to content

Commit 5e727ce

Browse files
authored
Doc: make html does not include dependency libraries (#1778)
1 parent c9c9435 commit 5e727ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Makefile.common

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,11 @@ $(DOCDIR)/dependency_graph.pre:
109109
coqdep -f _CoqProject | perl etc/builddoc_dependency_dot.pl > $(DOCDIR)/dependency_graph.pre
110110

111111
$(DOCDIR)/dependency_graph.dot: $(DOCDIR)/dependency_graph.pre
112-
mkdir -p $(DOCDIR)
113112
tred $(DOCDIR)/dependency_graph.pre > $(DOCDIR)/dependency_graph.dot
114113

115114
html: build $(DOCDIR)/dependency_graph.dot
116115
etc/rocqnavi_generate-hierarchy-graph.sh $(DOCDIR)/hierarchy_graph.dot
117-
mkdir -p $(DOCDIR)
118-
find . -not -path '*/.*' -name "*.v" -or -name "*.glob" | xargs rocqnavi \
116+
find . -name "*.v" -or -name "*.glob" | grep -v "/\." | grep -v "_opam/" | xargs rocqnavi \
119117
-title "Mathcomp Analysis" \
120118
-d $(DOCDIR) -base mathcomp -Q theories analysis \
121119
-coqlib https://rocq-prover.org/doc/V8.20.1/stdlib/ \

0 commit comments

Comments
 (0)