From 98cf2587909cc94ea1b7dafe0760fd49f21b68f9 Mon Sep 17 00:00:00 2001 From: stkhan Date: Mon, 6 May 2024 14:38:44 -0500 Subject: 0.0.3 --- Makefile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f38b8da..900a142 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,13 @@ -all: - cp nws ~/.local/bin/ - cp nws.conf ~/.config/ +PREFIX=/usr/local/bin + +all: install + +install: + mkdir -p ${PREFIX}/ + cp nws ${PREFIX}/ remove: - rm -rf ~/.local/bin/nws + rm -rf ${PREFIX}/nws +config: + mkdir -p ~/.config/nws/ + cp nws.conf ~/.config/nws/ -- cgit v1.2.3