aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1eebd1c..662a306 100644
--- a/Makefile
+++ b/Makefile
@@ -183,7 +183,11 @@ KERNELSHARK_VERSION = $(KS_VERSION).$(KS_PATCHLEVEL).$(KS_EXTRAVERSION)
183 183
184INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES) 184INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES)
185 185
186CFLAGS = -g -Wall $(CONFIG_FLAGS) $(INCLUDES) $(PLUGIN_DIR_SQ) 186# Set compile option CFLAGS if not set elsewhere
187CFLAGS ?= -g -Wall
188
189# Append required CFLAGS
190override CFLAGS += $(CONFIG_FLAGS) $(INCLUDES) $(PLUGIN_DIR_SQ)
187 191
188ifeq ($(VERBOSE),1) 192ifeq ($(VERBOSE),1)
189 Q = 193 Q =