aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.native
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.native
parente2cde6c3252247b4fa14117e2a4ef86efebbf948 (diff)
downloadnnn-277cf66097209b0f56312e11a82dd3db437df1a0.tar.gz
Move config.h to nnn.h
Diffstat (limited to 'Makefile.native')
-rw-r--r--Makefile.native4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.native b/Makefile.native
index 4eac41d..b91a3e0 100644
--- a/Makefile.native
+++ b/Makefile.native
@@ -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)