From 6ab2a0f0d36c4bf1f4802c8e1c4d3fcb39c57988 Mon Sep 17 00:00:00 2001 From: Paul Garlick Date: Mon, 20 Jul 2020 11:16:22 +0100 Subject: doc: Create symbolic links for images directory. * Makefile: Add 'ln' commands. * doc/images: New link. --- Makefile | 3 +++ doc/images | 1 + 2 files changed, 4 insertions(+) create mode 120000 doc/images diff --git a/Makefile b/Makefile index aa024d0..d038024 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,16 @@ doc/dir: doc/fullswof-utils.info doc/fullswof-utils.info: doc/fullswof-utils.texi @makeinfo --output=doc/fullswof-utils.info --no-split $< + @ln -s ../images doc/images html-doc: doc/fullswof-utils.texi @test -d $(HTML_DIR) || mkdir $(HTML_DIR) @makeinfo --html --css-ref="../../css/manual.css" \ --output=$(HTML_DIR)/html_node $< + @ln -s ../../images $(HTML_DIR)/html_node/images @makeinfo --html --css-ref="../css/manual.css" --no-split \ --output=$(HTML_DIR)/fullswof-utils.html $< + @ln -s ../images $(HTML_DIR)/images clean: @echo "Cleaning up..." diff --git a/doc/images b/doc/images new file mode 120000 index 0000000..5e67573 --- /dev/null +++ b/doc/images @@ -0,0 +1 @@ +../images \ No newline at end of file -- cgit