aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #