Make optimization flags configurable

This commit is contained in:
Sijmen J. Mulder 2018-12-16 17:56:41 +01:00
parent 9422a38b0d
commit f257cda04a
1 changed files with 3 additions and 1 deletions

View File

@ -6,8 +6,10 @@ STRIP ?= strip
PKG_CONFIG ?= pkg-config
INSTALL ?= install
CFLAGS ?= -O3
CFLAGS_OPTIMIZATION ?= -O3
CFLAGS += -Wall -Wextra -Wno-unused-parameter
CFLAGS += $(CFLAGS_OPTIMIZATION)
ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)