Fix fuzzers and minitests sections

Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
This commit is contained in:
Robert Winkler 2020-02-25 14:52:51 +01:00
parent 66f1f88e70
commit ff11ce09b2
2 changed files with 8 additions and 2 deletions

View File

@ -3,8 +3,7 @@
# You can set these variables from the command line.
SPHINXOPTS =
CMDS = cd source/prjxray/docs && make links && cd - &&
SPHINXBUILD = $(CMDS) sphinx-build
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = build

View File

@ -324,3 +324,10 @@ breathe_projects = {
symbolator_cmd_args = ['--transparent']
symbolator_output_format = 'svg'
### PRJXRAY FUZZERS AND MINITESTS LINKS
def prjxray_fuzzers_and_minitests_links():
cmd = "cd prjxray/docs && make links"
subprocess.call(cmd, shell=True)
prjxray_fuzzers_and_minitests_links()