diff --git a/Makefile b/Makefile index 7d5ae56..607e468 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/source/conf.py b/source/conf.py index 2dc51bb..fb0bb5b 100644 --- a/source/conf.py +++ b/source/conf.py @@ -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()