aboutsummaryrefslogtreecommitdiffstats
path: root/doc/Makefile
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-28 01:25:28 +0100
committerYann Herklotz <git@yannherklotz.com>2022-03-28 01:25:28 +0100
commit6959b38a343d4575efc442ea02422dc64cf59d00 (patch)
treef98f3a4d9851863b7998d3ca87d5951af8919e8a /doc/Makefile
parentcfa2956933619440ab9803b1468292b191765b38 (diff)
downloadvericert-6959b38a343d4575efc442ea02422dc64cf59d00.tar.gz
vericert-6959b38a343d4575efc442ea02422dc64cf59d00.zip
Add to documentation
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 5662645..8a34845 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -9,7 +9,7 @@ SOURCEDIR = .
BUILDDIR = _build
SOURCE_DATE_EPOCH = $(shell git log -1 --format=%ct)
-VS_DOCS := ../src/Compiler.v ../src/hls/RTLBlockInstr.v
+VS_DOCS := Compiler.v hls/RTLBlockInstr.v hls/RTLBlockgen.v hls/RTLBlockgenproof.v
# Put it first so that "make" without argument is like "make help".
help:
@@ -20,5 +20,5 @@ help:
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
- $(foreach d,$(VS_DOCS),cp $(d) $(patsubst ../%,%,$(d));)
+ $(foreach d,$(VS_DOCS),cp ../src/$(d) src/$(d);)
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)