From ee0f50de06a9c2bec84d97c1c1a9cd2ab5d05008 Mon Sep 17 00:00:00 2001 From: Chris Guillott Date: Fri, 14 Oct 2016 14:47:22 -0400 Subject: [PATCH] add debug make target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 13e8144..020beaa 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,9 @@ CPPFLAGS += -DVERSION=\"${I3LOCK_VERSION}\" all: i3lock +debug: CFLAGS += -g +debug: i3lock + i3lock: ${FILES} $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)