diff --git a/Makefile b/Makefile index 00c7769..ed05fc0 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/sphinx diff --git a/source/conf.py b/source/conf.py index 80c58bb..66e6c7a 100644 --- a/source/conf.py +++ b/source/conf.py @@ -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()