diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-08-04 05:44:00 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-08-04 05:44:00 +0300 |
commit | c5c6a928a59471ab3775ae3418cabdc9cbc95509 (patch) | |
tree | 87f936da83d1cb5cd3513825b580a901d05bd53f | |
parent | 0ac3b187dff09b67bd4551e0124e6fad8884adda (diff) | |
download | magi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.tar magi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.tar.xz magi-c5c6a928a59471ab3775ae3418cabdc9cbc95509.zip |
Makefile fix.
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |