diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-09-02 11:39:44 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-09-02 11:39:44 +0530 |
commit | 277cf66097209b0f56312e11a82dd3db437df1a0 (patch) | |
tree | 240c61d74fe1c615a612f7a027fef7e49250ac10 /Makefile | |
parent | e2cde6c3252247b4fa14117e2a4ef86efebbf948 (diff) | |
download | nnn-277cf66097209b0f56312e11a82dd3db437df1a0.tar.gz |
Move config.h to nnn.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |