aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e0196c1..9dad2e0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,15 @@ VERSION = 1.6
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
STRIP ?= strip
+PKG_CONFIG ?= pkg-config
CFLAGS ?= -O3
CFLAGS += -Wall -Wextra -Wno-unused-parameter
LDLIBS = -lreadline
-ifeq ($(shell pkg-config ncursesw && echo 1),1)
- CFLAGS += $(shell pkg-config --cflags ncursesw)
- LDLIBS += $(shell pkg-config --libs ncursesw)
+ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
+ CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)
+ LDLIBS += $(shell $(PKG_CONFIG) --libs ncursesw)
else
LDLIBS += -lncurses
endif