diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dc276ca --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +install: + go build -o newsboat-yt . + mv newsboat-yt /usr/local/bin/newsboat-yt + +clean: + go clean + rm -f newsboat-yt + +uninstall: + rm -f /usr/local/bin/newsboat-yt