aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-09-02 11:39:44 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-09-02 11:39:44 +0530
commit277cf66097209b0f56312e11a82dd3db437df1a0 (patch)
tree240c61d74fe1c615a612f7a027fef7e49250ac10 /Makefile
parente2cde6c3252247b4fa14117e2a4ef86efebbf948 (diff)
downloadnnn-277cf66097209b0f56312e11a82dd3db437df1a0.tar.gz
Move config.h to nnn.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6d477e2..7dfe151 100644
--- a/Makefile
+++ b/Makefile
@@ -13,14 +13,14 @@ else
LDLIBS += -lncurses
endif
-DISTFILES = nlay nnn.c config.h nnn.1 Makefile README.md LICENSE
+DISTFILES = nlay nnn.c nnn.h nnn.1 Makefile README.md LICENSE
SRC = nnn.c
BIN = nnn
PLAYER = nlay
all: $(BIN) $(PLAYER)
-$(SRC): config.h
+$(SRC): nnn.h
$(BIN): $(SRC)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)