commit 29fdadafdbb7ef57306baa537f8730624b2ac640 parent 1be39bd69f93f3d0d385fc462d94f6b0218950cd Author: vx-clutch <[email protected]> Date: Sun, 11 Jan 2026 19:30:22 -0500 install templates and manual pages with Makefile Diffstat:
| M | Makefile | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git 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