From eec8c7ce5f6db1285197fcadb0dbaacab179fcf3 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 21 Mar 2020 10:27:18 +0200 Subject: [PATCH] pfetch: Added Makefile. Closes #49 --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cd750f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +PREFIX ?= /usr + +all: + @echo RUN \'make install\' to install pfetch + +install: + @install -Dm 755 pfetch $(DESTDIR)$(PREFIX)/bin/pfetch + +uninstall: + @rm -f $(DESTDIR)$(PREFIX)/bin/pfetch