aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-02-22 05:19:04 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-02-22 05:19:04 +0530
commit95d0eb6a172a88844a7e102305734d5bd5e34877 (patch)
tree31f37d94d10bea5d3a250a34e1c38853f33fbbdc /Makefile
parentf0fa3bba87b2afcabe53d350772fa81190b5629f (diff)
downloadnnn-95d0eb6a172a88844a7e102305734d5bd5e34877.tar.gz
Use a shorter macro
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fffb0eb..07a7d5f 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ $(BIN): $(SRC)
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
debug: $(SRC)
- $(CC) -DDEBUGMODE -g $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(BIN) $^ $(LDLIBS)
+ $(CC) -DDBGMODE -g $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(BIN) $^ $(LDLIBS)
install: all
$(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/bin