summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 83a64e4..a30b8e7 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ MANDIR = /usr/share/man
VERSION = 0.0
-all: check-kernel
+all: man.commons check-kernel check-kernel.1
%: %.in
sed " \
@@ -37,10 +37,17 @@ all: check-kernel
" $< > $@
[ "$@" = "check-kernel" ] && chmod +x "$@" || true
+%.1: % man.commons
+ grep -v "^$<(" man.commons | sed '/^\[SEE ALSO]$$/{n;:a;N;/\[/b;s/\n/, /;ta;}' > "$<.common" && \
+ help2man \
+ -n 'Check if the installed kernel is currently running' \
+ -o "$@" -N --include $<.common --no-discard-stderr "./$<"
+
.PHONY: install dist clean
install: all
install -D -m0755 check-kernel $(DESTDIR)$(BINDIR)/check-kernel
+ install -D -m0644 check-kernel.1 $(DESTDIR)$(MANDIR)/man1/check-kernel.1
clean:
ls -A | \