From 66879c3f9c8f0c2a5c9fb49ccea00cde3a06975e Mon Sep 17 00:00:00 2001
From: Paul Garlick <pgarlick@tourbillion-technology.com>
Date: Tue, 17 Dec 2019 15:47:26 +0000
Subject: add style sheets and use for html manual.

---
 Makefile | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index bcd0ab5..64bbe94 100644
--- a/Makefile
+++ b/Makefile
@@ -3,13 +3,14 @@ HTML_DIR := manual
 all: info-doc html-doc
 
 info-doc: doc/fullswof-utils.texi
-	makeinfo --output=doc/fullswof-utils.info --no-split $<
+	@makeinfo --output=doc/fullswof-utils.info --no-split $<
 
 html-doc: doc/fullswof-utils.texi
 	@test -d $(HTML_DIR) || mkdir $(HTML_DIR)
-	makeinfo --html --output=$(HTML_DIR)/html_node $<
-	makeinfo --html --output=$(HTML_DIR)/fullswof-utils.html \
-	  --no-split $<
+	@makeinfo --html --css-ref="../../css/manual.css" \
+	  --output=$(HTML_DIR)/html_node $<
+	@makeinfo --html --css-ref="../css/manual.css" --no-split \
+	  --output=$(HTML_DIR)/fullswof-utils.html $<
 
 clean:
 	@echo "Cleaning up..."
-- 
cgit