From 2474a9e50e5d21ed6b3fd825d9fe565b79f62014 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sat, 26 Oct 2013 11:35:57 +0200 Subject: o Adding '-f [file]' option to app-conf set. --- docs/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/Makefile b/docs/Makefile index f9ae4ea..c62e70c 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,9 +1,13 @@ TXT=$(wildcard *.txt) HTML=$(patsubst %.txt,%.html,$(TXT)) -all: $(HTML) +MAN=$(patsubst %.txt,%.1,$(TXT)) +all: $(HTML) $(MAN) %.html: %.txt asciidoc -a data-uri -a icons -a toc -a max-width=55em $< +%.1: %.txt + a2x --doctype manpage --format manpage $< + clean: - rm -rf $(wildcard *.html) + rm -rf $(wildcard *.html) $(wildcard *.1) -- cgit v1.2.3