Commit 347ac947 authored by Muhammad Herdiansyah's avatar Muhammad Herdiansyah

Makefile: New Makefile

parent 02564a1b
PREFIX ?= /usr PREFIX = /usr
RM ?= rm -f
INSTALL_DIR ?= install -m755 -d
INSTALL_PROG ?= install -m755
INSTALL_FILE ?= install -m644
all: all:
@echo Run \'make install\' to install Neofetch @echo Run \'make install\' to install Neofetch
install: install:
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
$(INSTALL_DIR) $(DESTDIR)$(PREFIX)/share/man/man1 mkdir -p $(DESTDIR)/etc/neofetch
$(INSTALL_PROG) neofetch $(DESTDIR)$(PREFIX)/bin/neofetch mkdir -p $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
$(INSTALL_FILE) neofetch.1 $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1 cp -p neofetch $(DESTDIR)$(PREFIX)/bin/neofetch
$(INSTALL_FILE) config/config $(DESTDIR)$(PREFIX)/share/neofetch/config cp -p neofetch.1 $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
$(INSTALL_FILE) ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro cp -p config/config $(DESTDIR)/etc/neofetch/config
cp -p ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
uninstall: uninstall:
$(RM) $(DESTDIR)$(PREFIX)/bin/neofetch rm -f $(DESTDIR)$(PREFIX)/bin/neofetch
$(RM) $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1 rm -f $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
$(RM) -r $(DESTDIR)$(PREFIX)/share/neofetch rm -f -r $(DESTDIR)$(PREFIX)/share/neofetch
rm -f -r $(DESTDIR)/etc/neofetch
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