mirror of
https://github.com/unseen-ninja/pfetch.git
synced 2026-05-05 16:07:24 +02:00
10 lines
183 B
Makefile
10 lines
183 B
Makefile
PREFIX ?= /usr
|
|
|
|
all:
|
|
@echo RUN \'make install\' to install pfetch
|
|
|
|
install:
|
|
@install -Dm755 pfetch $(DESTDIR)$(PREFIX)/bin/pfetch
|
|
|
|
uninstall:
|
|
@rm -f $(DESTDIR)$(PREFIX)/bin/pfetch
|