From 42c06d73df17fbe8d04575ae687d0a561320d94f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 11 Feb 2014 00:06:36 +0000 Subject: Add version number to metadata Automatically from git describe. --- manual/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'manual/Makefile') diff --git a/manual/Makefile b/manual/Makefile index d635ebeb..bea7949e 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,20 +1,28 @@ +TITLE = Backups with Obnam +AUTHOR = Lars Wirzenius (liw@liw.fi) +VERSION = Version $(shell git describe) + sources = $(wildcard *.mdwn) outputs = manual.pdf manual.html all: $(outputs) -manual.pdf: Makefile $(sources) +manual.pdf: Makefile 000.mdwn $(sources) pandoc --smart --toc --chapters --number-sections \ -o manual.pdf $(sources) -manual.html: Makefile $(sources) +manual.html: Makefile 000.mdwn $(sources) pandoc -H manual.css --smart --toc --chapters --number-sections \ --standalone \ --self-contained \ -o manual.html $(sources) +000.mdwn: + (echo "% $(TITLE)"; echo "% $(AUTHOR)"; echo "% $(VERSION)") \ + > 000.mdwn + clean: - rm -f $(outputs) + rm -f $(outputs) 000.mdwn publish: $(outputs) rsync $(outputs) code.liw.fi:code.liw.fi/obnam/manual/. -- cgit v1.2.1