diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-08-14 00:02:54 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-08-14 00:02:54 +0530 |
commit | fbd5e77ec17818535d894fc7fe5b39981887f4e1 (patch) | |
tree | 6eab8e30ae72b549b2b6159eb16607462c005e79 /misc | |
parent | 0c93b170c84d38fb4d6eae012a4682e587c557ca (diff) | |
download | nnn-fbd5e77ec17818535d894fc7fe5b39981887f4e1.tar.gz |
Initialize all make options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/haiku/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/haiku/Makefile b/misc/haiku/Makefile index 430b3d4..35480d3 100644 --- a/misc/haiku/Makefile +++ b/misc/haiku/Makefile @@ -9,9 +9,14 @@ CP ?= cp CFLAGS_OPTIMIZATION ?= -O3 -O_DEBUG := 0 +O_DEBUG := 0 # debug binary O_NORL := 0 # no readline support +O_PCRE := 0 # link with PCRE library O_NOLOC := 0 # no locale support +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 # convert targets to flags for backwards compatibility ifneq ($(filter debug,$(MAKECMDGOALS)),) |