From 56d701464b19a608f63520cbcf2cdc2598755b34 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Mon, 31 May 2021 21:16:40 +0000 Subject: [PATCH] makefile: seperate man installation target --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b36e221..7ee20f3 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,10 @@ man: setup: mkdir -p build/bin build/man -install: all +install: all man-install cp -r build/bin/* $(DESTDIR)/$(PREFIX)/bin/ + +man-install: cp -r build/man/* $(DESTDIR)/$(PREFIX)/share/man/man1/ clean: -- 2.39.2