diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2016-08-21 08:25:12 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2016-08-21 09:54:51 +0530 |
commit | 2958ecd040d588b43379f38d93a8657d305564c7 (patch) | |
tree | 9e4e85668248f4d710c07344a87094a1e0a9af5d /Makefile | |
parent | 25e1dcaa8b1940f2a199d1ab494a45515637e433 (diff) | |
download | nnn-2958ecd040d588b43379f38d93a8657d305564c7.tar.gz |
Remove libmagic, use file command.
The magic.mgc file gets created in the local directory, opening
the global file throws unwanted messages. So we are using the o/p
of the file command to determine if the file is a plain text file.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ MANPREFIX = $(PREFIX)/man #CPPFLAGS = -DDEBUG #CFLAGS = -g CFLAGS = -O3 -march=native -LDLIBS = -lcurses -lmagic +LDLIBS = -lcurses DISTFILES = noice.c strlcat.c strlcpy.c util.h config.def.h\ noice.1 Makefile README LICENSE |