diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-05-30 06:59:45 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-05-30 07:01:34 +0530 |
commit | e3d90a98ceb6cbf2bd7ab3b242692b0079a7e15a (patch) | |
tree | fbe1217c8d54d02599edd2853cdf24b67082c28f /Makefile | |
parent | 4d291d0ac27830afc19bfb0f4057542a06de7b23 (diff) | |
download | nnn-e3d90a98ceb6cbf2bd7ab3b242692b0079a7e15a.tar.gz |
Support make option O_CTX8 for 8 contexts
Note that this is not compatible with 4 contexts.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -61,6 +61,10 @@ ifeq ($(O_NOFIFO),1) CPPFLAGS += -DNOFIFO endif +ifeq ($(O_CTX8),1) + CPPFLAGS += -DCTX8 +endif + ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) CFLAGS_CURSES ?= $(shell $(PKG_CONFIG) --cflags ncursesw) LDLIBS_CURSES ?= $(shell $(PKG_CONFIG) --libs ncursesw) |