aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-08-16 22:54:49 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-08-16 22:54:49 +0530
commit8b8e644cf50492967a5f24d32ad36cfe74b13aa0 (patch)
treeb1c462ef92f2dc8afc0d35a579de048f2c66c650 /Makefile
parent9d3f75f63b71d80d9ae753956476e801b687e6f3 (diff)
downloadnnn-8b8e644cf50492967a5f24d32ad36cfe74b13aa0.tar.gz
Remove readline dep and use native prompt
- `nnn` is all about navigational convenience so the user doesn't have to type - the binary size increases due to readline linkage - alternative workflow: ^G, cd, `nnn` - readline required using the prompt and the history would stay after quit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4dd3cc1..598fae2 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,6 @@ INSTALL ?= install
CFLAGS ?= -O3
CFLAGS += -Wall -Wextra -Wno-unused-parameter
-LDLIBS = -lreadline
ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)