Makefile: use PKG_CONFIG, not pkg-config

This commit is contained in:
Kylie McClain 2017-11-17 00:32:30 -05:00
parent 386f595a49
commit ab390a02dc

View File

@ -17,6 +17,8 @@ sources := $(sort $(wildcard *.cc))
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
PKG_CONFIG ?= pkg-config
PREFIX ?= /usr/local
DESTDIR ?= # root dir
@ -45,8 +47,8 @@ else ifneq (,$(findstring CYGWIN,$(os)))
CPPFLAGS += -D_XOPEN_SOURCE=700
LIBS += -lncursesw -ldbghelp
else
LIBS += $(shell pkg-config --libs ncursesw)
CPPFLAGS += $(shell pkg-config --cflags ncursesw)
LIBS += $(shell $(PKG_CONFIG) --libs ncursesw)
CPPFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)
LDFLAGS += -rdynamic
endif