Makefile: Allow for passing include/ncursesw path

This commit is contained in:
Kylie McClain 2015-11-19 20:09:24 -05:00
parent c0f1b7b99f
commit 77ba471020

View File

@ -24,6 +24,8 @@ deps := $(addprefix ., $(sources:.cc=$(suffix).d))
PREFIX ?= /usr/local
DESTDIR ?= # root dir
NCURSESW_INCLUDE ?= /usr/include/ncursesw
bindir := $(DESTDIR)$(PREFIX)/bin
sharedir := $(DESTDIR)$(PREFIX)/share/kak
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
@ -46,7 +48,7 @@ else ifneq (,$(findstring CYGWIN,$(os)))
LIBS += -lncursesw -lboost_regex -ldbghelp
else
LIBS += -lncursesw -lboost_regex
CPPFLAGS += -I/usr/include/ncursesw
CPPFLAGS += -I$(NCURSESW_INCLUDE)
LDFLAGS += -rdynamic
endif