Commit 698d1ef5 authored by Dylan Araps's avatar Dylan Araps

general: Remove Makefile

parent 4ee3eadb
PREFIX ?= /usr
MANDIR ?= $(PREFIX)/share/man
all:
@echo Run \'make install\' to install Neofetch.
install:
@echo 'Making directories...'
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@mkdir -p $(DESTDIR)$(MANDIR)/man1
@echo 'Installing binaries...'
@chmod 755 $(DESTDIR)$(PREFIX)/bin/neofetch
@echo 'Installing man page...'
@cp -p neofetch.1 $(DESTDIR)$(MANDIR)/man1
uninstall:
@echo 'Removing files...'
@rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch
@rm -rf $(DESTDIR)$(MANDIR)/man1/neofetch.1*
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment