commit 247813beabedf26ede4e9e143693b817c6c3e593
parent 8e453064e812dab64a226be56cbcea4285f61fb7
Author: Cem Keylan <cem@ckyln.com>
Date: Sat, 10 Oct 2020 11:17:01 +0300
Makefile: move directory configuration to config.mk
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,6 +1,3 @@
-PREFIX = /usr/local
-BINDIR = ${PREFIX}/bin
-
include config.mk
.SUFFIXES:
diff --git a/config.mk b/config.mk
@@ -1,5 +1,9 @@
VERSION = git
+PREFIX = /usr/local
+BINDIR = ${PREFIX}/bin
+MANPREFIX = ${PREFIX}/share/man
+
CC = cc
AR = ar
RANLIB = ranlib