From 93b88fad1cec32c079c1178313a2063380dfc75e Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 18 Sep 2023 16:35:53 -0500 Subject: [PATCH] Combine 2 targets into one line --- make_files/make_docs.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/make_files/make_docs.mk b/make_files/make_docs.mk index bbe5bcd..46fabd7 100644 --- a/make_files/make_docs.mk +++ b/make_files/make_docs.mk @@ -351,10 +351,8 @@ $(LATEX_DIRS) $(HTML_DIRS) $(HTML_SRCDIR) $(LATEX_SRCDIR) \ # at least if the paths are not relative to the source RST file and # we don't want relative paths. So symlink the image dir into # the sphinx-doc dir. -$(HTML_IMAGEDIR): - ln -s ../../images $(HTML_IMAGEDIR) -$(LATEX_IMAGEDIR): - ln -s ../../images $(LATEX_IMAGEDIR) +$(HTML_IMAGEDIR) $(LATEX_IMAGEDIR): + ln -s ../../images $@ # # The files sphinx builds for a pdf -- 2.34.1