diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2020-03-21 10:27:18 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2020-03-21 10:27:18 +0200 |
| commit | eec8c7ce5f6db1285197fcadb0dbaacab179fcf3 (patch) | |
| tree | a7944d489a0c29e30d490ae9efd0dd5398f96fe7 | |
| parent | e30fc1075c679d3ab9e7db7c41beeed25dbe0784 (diff) | |
| download | pfetch-eec8c7ce5f6db1285197fcadb0dbaacab179fcf3.tar.gz | |
pfetch: Added Makefile. Closes #49
| -rw-r--r-- | Makefile | 10 |
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 |
