about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2012-02-06 17:23:28 -0600
committerMarco Peereboom <marco@conformal.com>2012-02-06 17:23:28 -0600
commitc4e9479569c36a958bf0b219fc27ec930da3890d (patch)
treee6cf05e179ccaeff6e346393d07f4d8ac4109f15 /Makefile
parent7a2f4d931d564cc76dd3e9fd590e841b737bf4d7 (diff)
downloadxombrero-c4e9479569c36a958bf0b219fc27ec930da3890d.tar.gz
fix debug
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3557c39..ad450c8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,13 @@ BINDIR=${PREFIX}/bin
 PROG=xxxterm
 MAN=xxxterm.1
 
+DEBUG= -ggdb3
+
 SRCS= cookie.c inspector.c marco.c about.c whitelist.c settings.c inputfocus.c
 SRCS+= history.c completion.c tldlist.c externaleditor.c unix.c xxxterm.c
 CFLAGS+= -O2 -Wall -Wno-format-extra-args -Wunused
-CFLAGS+= -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare
+CFLAGS+= -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare ${DEBUG}
 CFLAGS+= -I. -I${.CURDIR}
-DEBUG= -ggdb3
 LDADD= -lutil -lgcrypt
 LIBS+= gtk+-2.0
 LIBS+= webkit-1.0
#n153'>153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175