aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2020-03-21 10:27:18 +0200
committerDylan Araps <dylan.araps@gmail.com>2020-03-21 10:27:18 +0200
commiteec8c7ce5f6db1285197fcadb0dbaacab179fcf3 (patch)
treea7944d489a0c29e30d490ae9efd0dd5398f96fe7
parente30fc1075c679d3ab9e7db7c41beeed25dbe0784 (diff)
downloadpfetch-eec8c7ce5f6db1285197fcadb0dbaacab179fcf3.tar.gz
pfetch: Added Makefile. Closes #49
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
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