From 29fdadafdbb7ef57306baa537f8730624b2ac640 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Sun, 11 Jan 2026 19:30:22 -0500 Subject: [PATCH] install templates and manual pages with Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index c00aabf..4318b37 100644 --- a/Makefile +++ b/Makefile @@ -3,3 +3,12 @@ all: install: cp bin/yait /usr/local/bin + mkdir -p /etc/yait + cp t/default/* /etc/yait + cp yait.1 /usr/local/share/man/man1/yait.1 + chmod 644 /usr/local/share/man/man1/yait.1 + +uninstall: + $(RM) /usr/local/bin/yait + $(RM) -r /etc/yait + $(RM) /usr/local/share/man/man1/yait.1