diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 | \ |