diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/haiku/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/misc/haiku/Makefile b/misc/haiku/Makefile index 35480d3..ba10734 100644 --- a/misc/haiku/Makefile +++ b/misc/haiku/Makefile @@ -17,6 +17,7 @@ O_NOMOUSE := 0 # no mouse support O_NOBATCH := 0 # no built-in batch renamer O_NOFIFO := 0 # no FIFO previewer support O_CTX8 := 0 # enable 8 contexts +O_ICONS := 0 # support icons # convert targets to flags for backwards compatibility ifneq ($(filter debug,$(MAKECMDGOALS)),) @@ -69,6 +70,10 @@ ifeq ($(O_CTX8),1) CPPFLAGS += -DCTX8 endif +ifeq ($(O_ICONS),1) + CPPFLAGS += -DICONS +endif + ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) CFLAGS_CURSES ?= $(shell $(PKG_CONFIG) --cflags ncursesw) LDLIBS_CURSES ?= $(shell $(PKG_CONFIG) --libs ncursesw) |