diff options
author | Sijmen J. Mulder <ik@sjmulder.nl> | 2018-12-16 17:59:20 +0100 |
---|---|---|
committer | Sijmen J. Mulder <ik@sjmulder.nl> | 2018-12-16 20:19:08 +0100 |
commit | 599f4e82b7cc030eb3d10876677f44fabe5194b5 (patch) | |
tree | 40c314f939c9e277d133c96467596568cc2c8a2a /Makefile | |
parent | f257cda04ad0f5b6efbb435de61e45d2ae5acbb1 (diff) | |
download | nnn-599f4e82b7cc030eb3d10876677f44fabe5194b5.tar.gz |
Also use pkg-config for regular ncurses
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,9 @@ CFLAGS += $(CFLAGS_OPTIMIZATION) ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw) LDLIBS += $(shell $(PKG_CONFIG) --libs ncursesw) +else ifeq ($(shell $(PKG_CONFIG) ncurses && echo 1),1) + CFLAGS += $(shell $(PKG_CONFIG) --cflags ncurses) + LDLIBS += $(shell $(PKG_CONFIG) --libs ncurses) else LDLIBS += -lncurses endif |