-
-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Move quickemu_conf manual to section 5 (#1454)
* docs: Simplify make rules for pandoc This removes a --standalone duplicate and counter-productive indirections like $(MANSECTION) because it prevents having more than one and docs/Makefile hardcodes the section anyway. * docs: Move quickemu_conf manual to section 5 Where it technically belongs... With the new make rules for pandoc, it's actually much easier to manage manuals in several sections without much overhead. * docs: Remove potential quickemu_conf.1 leftover
- Loading branch information
Showing
9 changed files
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
PANDOC ?= pandoc | ||
PANDOC_OPTIONS = -f gfm+definition_lists | ||
|
||
MANSECTION ?= 1 | ||
.SUFFIXES: .1.md .1 .5.md .5 | ||
|
||
PANDOC_OPTIONS=-f gfm+definition_lists --standalone | ||
|
||
|
||
MANPAGE.md = $(PANDOC) --standalone $(PANDOC_OPTIONS) --to man | ||
|
||
%.$(MANSECTION): %.$(MANSECTION).md | ||
$(MANPAGE.md) $< -o $@ | ||
.1.md.1 .5.md.5: | ||
$(PANDOC) --standalone $(PANDOC_OPTIONS) --to man -o $@ $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters