]> Sergey Matveev's repositories - nnn.git/commitdiff
Initialize all make options
authorArun Prakash Jana <engineerarun@gmail.com>
Thu, 13 Aug 2020 18:32:54 +0000 (00:02 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Thu, 13 Aug 2020 18:32:54 +0000 (00:02 +0530)
Makefile
misc/haiku/Makefile

index 5c989128d1f29a12b0e57ebe06b15754a3c3fecf..e6c07c50ef65c0a8d3d61f2e543da2085c883b0c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,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)),)
index 430b3d49089291cc1f75accf9954209b9bd4b11c..35480d3567963f413c9d830eb35ba7aa9480e095 100644 (file)
@@ -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)),)