summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 06a84e8..1a98ee9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,9 @@ OBJ = $(BUILD)parser.o \
$(BUILD)screen.o \
$(BUILD)unicode-extra.o
LIBS = glib-2.0
-CFLAGS ?= -g -Wall -Wextra -Werror
-LDFLAGS ?= -g -Wall -Wextra -Werror
+OPT ?= -g
+CFLAGS ?= $(OPT) -Wall -Wextra -Werror
+LDFLAGS ?= $(OPT) -Wall -Wextra -Werror
ALLCFLAGS = $(shell pkg-config --cflags $(LIBS)) $(CFLAGS)
ALLLDFLAGS = $(shell pkg-config --libs $(LIBS)) $(LDFLAGS)