aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-08-04 05:44:00 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-08-04 05:44:00 +0300
commitc5c6a928a59471ab3775ae3418cabdc9cbc95509 (patch)
tree87f936da83d1cb5cd3513825b580a901d05bd53f /Makefile
parent0ac3b187dff09b67bd4551e0124e6fad8884adda (diff)
downloadmagi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.tar
magi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.tar.xz
magi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.zip
Makefile fix.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f6491d8..8d9041d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Compilation Options
# Debug mode [yes/no] (allowing to debug the library via gdb):
-DEBUG ?= no
+DEBUG = no
# Specify your favourite C compiler here:
-CC ?= gcc
+CC = gcc
# Specify your include directory (headers location):
-INCDIR ?= /usr/include
+INCDIR = /usr/include
# Specify your libraries directory:
-LIBDIR ?= /usr/lib
+LIBDIR = /usr/lib
# Specify location of man pages on your machine:
-MANDIR ?= /usr/share/man
+MANDIR = /usr/share/man
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #