From 375d65aea269e87d07d88d6380efbedd7fbcf2aa Mon Sep 17 00:00:00 2001 From: Martin Pecka Date: Fri, 10 Jul 2020 13:40:13 +0200 Subject: [PATCH] Split installing man pages Man pages do not build anyways in the `all` target in this fork, and their build even fails due to encoding issues on my machine. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 6173e82d..e641a22f 100644 --- a/Makefile +++ b/Makefile @@ -31,5 +31,7 @@ endif install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp atinout $(DESTDIR)$(PREFIX)/bin + +install-man: atinout.1 mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 cp atinout.1 $(DESTDIR)$(PREFIX)/share/man/man1/atinout.1