diff options
| author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2019-12-17 15:47:26 +0000 | 
|---|---|---|
| committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2019-12-17 15:47:26 +0000 | 
| commit | 66879c3f9c8f0c2a5c9fb49ccea00cde3a06975e (patch) | |
| tree | 91216b0deeed2e50d74f96783f389e458a1a32bb /Makefile | |
| parent | 8b69c236477800baf5c45ea7dcddfa78d7ee58e1 (diff) | |
| download | fullSWOF-utils-66879c3f9c8f0c2a5c9fb49ccea00cde3a06975e.tar.gz | |
add style sheets and use for html manual.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 | 
1 files changed, 5 insertions, 4 deletions
| @@ -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..." | 
