mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Initialize all make options
This commit is contained in:
parent
0c93b170c8
commit
fbd5e77ec1
7
Makefile
7
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)),)
|
||||
|
|
|
@ -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)),)
|
||||
|
|
Loading…
Reference in a new issue