From 85511ae8a8090947c09daa4b06aa8313649c7597 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 15 Jun 2020 10:47:45 -0400 Subject: [PATCH] Added simple makefile for install/uninstall --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..56dde28 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +PREFIX?=/usr/local + +all: youtube-dl-parallel + +install: all + install -Dm755 youtube-dl-parallel $(PREFIX)/bin/youtube-dl-parallel + +clean: + @: + +uninstall: + $(RM) $(PREFIX)/bin/youtube-dl-parallel + +.PHONY: all install clean uninstall