Merge pull request #199 from antmicro/fix_fuzzers_and_minitests

Fix fuzzers and minitests sections
This commit is contained in:
Tim Ansell 2020-04-01 10:16:21 -07:00 committed by GitHub
commit 6afd2c540f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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/sphinx

View File

@ -343,3 +343,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()