summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2013-10-24 18:01:18 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2013-10-24 18:01:18 +0200
commit8a528fba3e920852af979e60ea444f7d019eb114 (patch)
treeed916bbb992309272f7cee50519b428d54fd487d
parentabdd5a7676399b2dc205df01b92323783beda0fc (diff)
build: add -g to CFLAGS
Build with debugging information during early development. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 42147c1..7e17016 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CFLAGS=-Wall -D_GNU_SOURCE -Isrc
+CFLAGS=-Wall -D_GNU_SOURCE -Isrc -g
all:
gcc -o openwfd_ie tools/openwfd_ie.c $(CFLAGS)