aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-01 21:51:49 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-01 21:51:49 +0200
commitf9a646a81d90b64ee83db7bb8c5a4ac2c4402298 (patch)
treef4f86af5d46f9e67d12786ed6ef64864d95674f0 /scripts/parse_kconfig/Makefile
parent6c3b630ccb456757b2a014b664e1581ecfed590f (diff)
downloadlinux-conf-perf-f9a646a81d90b64ee83db7bb8c5a4ac2c4402298.tar.gz
linux-conf-perf-f9a646a81d90b64ee83db7bb8c5a4ac2c4402298.tar.bz2
linux-conf-perf-f9a646a81d90b64ee83db7bb8c5a4ac2c4402298.zip
Add DEBUG and Wall to parse_kconfig
Diffstat (limited to 'scripts/parse_kconfig/Makefile')
-rw-r--r--scripts/parse_kconfig/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/parse_kconfig/Makefile b/scripts/parse_kconfig/Makefile
index 4b8a538..9cc87d1 100644
--- a/scripts/parse_kconfig/Makefile
+++ b/scripts/parse_kconfig/Makefile
@@ -11,9 +11,10 @@ SRC = parse.c \
boolexpr.c \
cnfbuild.c \
symlist.c \
+ doutput.c \
output.c
OBJ = $(patsubst %.c,%.o,$(SRC))
-CFLAGS = -O0 -w -ggdb
+CFLAGS = -O0 -Wall -ggdb -DDEBUG
INCLUDES = -I../shared
%.o: %.c