From 12c3c9dbee37bb5dfb6021832b8bf244b7ff43bb Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 24 May 2021 18:10:22 +0530 Subject: Add HTML manual to website. * Makefile.am (website/manual/dev/en): New target. (website): Require website/manual/dev/en. (AM_MAKEINFOHTMLFLAGS): Add --css-ref=/style.css to include CSS. --- Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 38e49bc..8eab1cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,7 +66,9 @@ EXTRA_DIST += \ # Build website -website: website/index.html website/style.css +AM_MAKEINFOHTMLFLAGS = --css-ref=/style.css + +website: website/index.html website/style.css website/manual/dev/en website/index.html: README.org mkdir -p $(dir $@) @@ -76,6 +78,11 @@ website/style.css: style.css mkdir -p $(dir $@) cp -v $< $@ +website/manual/dev/en: doc/ccwl.html + rm -rf $@ + mkdir -p $(dir $@) + cp -vr doc/ccwl.html $@ + # The clean target depends on clean-local. We use clean-local to clean # up the website built by the website target. clean-local: -- cgit v1.2.3