diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-10-08 23:46:01 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-10-08 23:46:13 -0400 |
commit | 442472a37da221c7c5f961870a2b6b53b1c18e81 (patch) | |
tree | a45ac88170235f22aefb3acc650b9ed75526df1a | |
parent | 30defdbc4d9cea77c8fbdb2de0d5fcff4fd12580 (diff) | |
download | piem-442472a37da221c7c5f961870a2b6b53b1c18e81.tar.gz |
Makefile: Specify --css-file for HTML manual
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ clean: docs: piem.html piem.info rm -rf html/ - makeinfo --html -o html/ -c TOP_NODE_UP_URL=/ piem.texi + makeinfo --html --css-ref=../manual.css -o html/ -c TOP_NODE_UP_URL=/ piem.texi piem-b4.elc: piem-b4.el piem.elc piem-elfeed.elc: piem-elfeed.el piem.elc @@ -41,4 +41,4 @@ piem.elc: piem.el piem-maildir.elc makeinfo $< .texi.html: - makeinfo --html -c TOP_NODE_UP_URL=/ --no-split $< + makeinfo --html --css-ref=manual.css -c TOP_NODE_UP_URL=/ --no-split $< |