diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-11-30 21:42:17 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-11-30 21:42:17 +0530 |
commit | c70f429bc7307504e43b701b96d95e792468b921 (patch) | |
tree | 85c4e4bbde5fedb9e43375ef7f8c74ec3b86d327 /Makefile | |
parent | 5ff29cede8e672eecc4d817dbc7fa311758116aa (diff) | |
download | nnn-c70f429bc7307504e43b701b96d95e792468b921.tar.gz |
Use the same o/p filename in debug mode
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ $(BIN): $(SRC) strip $@ debug: $(SRC) - $(CC) -DDEBUGMODE -g $(CFLAGS) -o nnndbg $^ $(LDFLAGS) $(LDLIBS) + $(CC) -DDEBUGMODE -g $(CFLAGS) -o nnn $^ $(LDFLAGS) $(LDLIBS) install: all mkdir -p $(DESTDIR)$(PREFIX)/bin |