From 26613ace6d48052e814566049ed62d83ef88b834 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 10 Jan 2021 18:43:01 -0600 Subject: [PATCH] Move PREFIX to Makefile --- Makefile | 2 +- config.mk | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 config.mk diff --git a/Makefile b/Makefile index 1108a48..3b87d5d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ VERSION ?= $(shell git tag --points-at HEAD | sed 's/^v//') VERSION += 0-git-$(shell git rev-parse --short HEAD) VERSION := $(word 1, $(VERSION)) -include config.mk +PREFIX ?= /usr all: @echo "Nekofetch doesn't need to be compiled, run 'make install' to install" diff --git a/config.mk b/config.mk deleted file mode 100644 index ca44285..0000000 --- a/config.mk +++ /dev/null @@ -1 +0,0 @@ -PREFIX := /usr