mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
* 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
7 lines
166 B
Makefile
7 lines
166 B
Makefile
PANDOC ?= pandoc
|
|
PANDOC_OPTIONS = -f gfm+definition_lists
|
|
|
|
.SUFFIXES: .1.md .1 .5.md .5
|
|
|
|
.1.md.1 .5.md.5:
|
|
$(PANDOC) --standalone $(PANDOC_OPTIONS) --to man -o $@ $<
|