aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-03-30 23:55:30 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-03-30 23:57:38 +0530
commit8775a527799aa9d023abb412ae537b79c52494b3 (patch)
tree8db56493d89712e23d2a7425b645d0ed92e990e9 /Makefile
parentc42790aa189339a9562128b486ebdd82fed79f8c (diff)
downloadnnn-8775a527799aa9d023abb412ae537b79c52494b3.tar.gz
Rename project to nnn (Noice is Not Noice)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index bd67f31..aa0dd28 100644
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,10 @@ MANPREFIX = $(PREFIX)/man
CFLAGS = -O3 -march=native
LDLIBS = -lcurses
-DISTFILES = noice.c strlcat.c strlcpy.c util.h config.def.h\
- noice.1 Makefile README LICENSE
-OBJ = noice.o strlcat.o strlcpy.o
-BIN = noice
+DISTFILES = nnn.c strlcat.c strlcpy.c util.h config.def.h\
+ nnn.1 Makefile README.md LICENSE
+OBJ = nnn.o strlcat.o strlcpy.o
+BIN = nnn
all: $(BIN)
@@ -19,7 +19,7 @@ $(BIN): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS)
strip $(BIN)
-noice.o: util.h config.h
+nnn.o: util.h config.h
strlcat.o: util.h
strlcpy.o: util.h
@@ -37,11 +37,11 @@ uninstall:
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
dist:
- mkdir -p noice-$(VERSION)
- cp $(DISTFILES) noice-$(VERSION)
- tar -cf noice-$(VERSION).tar noice-$(VERSION)
- gzip noice-$(VERSION).tar
- rm -rf noice-$(VERSION)
+ mkdir -p nnn-$(VERSION)
+ cp $(DISTFILES) nnn-$(VERSION)
+ tar -cf nnn-$(VERSION).tar nnn-$(VERSION)
+ gzip nnn-$(VERSION).tar
+ rm -rf nnn-$(VERSION)
clean:
- rm -f config.h $(BIN) $(OBJ) noice-$(VERSION).tar.gz
+ rm -f config.h $(BIN) $(OBJ) nnn-$(VERSION).tar.gz