mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2026-04-18 09:13:31 +00:00
add conditional override var LOG_USE_COLOR to makefile
This commit is contained in:
7
makefile
7
makefile
@@ -9,7 +9,12 @@ EXE := $(BIN_DIR)/$(program).exe
|
|||||||
SRC := $(wildcard $(SRC_DIR)/*.c)
|
SRC := $(wildcard $(SRC_DIR)/*.c)
|
||||||
OBJ := $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)
|
OBJ := $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)
|
||||||
|
|
||||||
CPPFLAGS := -Iinclude -MMD -MP
|
LOG_USE_COLOR ?= yes
|
||||||
|
ifeq ($(LOG_USE_COLOR), yes)
|
||||||
|
CPPFLAGS := -Iinclude -MMD -MP -DLOG_USE_COLOR
|
||||||
|
else
|
||||||
|
CPPFLAGS := -Iinclude -MMD -MP
|
||||||
|
endif
|
||||||
CFLAGS = -O -Wall -W -pedantic -ansi -std=c99
|
CFLAGS = -O -Wall -W -pedantic -ansi -std=c99
|
||||||
LDFLAGS := -Llib
|
LDFLAGS := -Llib
|
||||||
LDLIBS := -lm
|
LDLIBS := -lm
|
||||||
|
|||||||
Reference in New Issue
Block a user