From f8b47031fd65b9055e6a89a961466bdb367cd710 Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Tue, 18 Feb 2014 18:25:08 +0100 Subject: Documentation update, license clarification use pandoc for manpage generation, drop now-redundant README --- Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4c75e26 --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# Copyright (C) 2014 Timo Weingärtner +# +# This file is part of openssh-known-hosts. +# +# openssh-known-hosts is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# openssh-known-hosts is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with openssh-known-hosts. If not, see . + +all: update-openssh-known-hosts.8 + +%.8: %.8.md + pandoc -s -w man $< -o $@ + +clean: + $(RM) *.8 -- cgit v1.2.3