diff options
author | Karel Kočí <cynerd@email.cz> | 2015-05-01 21:51:49 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-05-01 21:51:49 +0200 |
commit | f9a646a81d90b64ee83db7bb8c5a4ac2c4402298 (patch) | |
tree | f4f86af5d46f9e67d12786ed6ef64864d95674f0 /scripts | |
parent | 6c3b630ccb456757b2a014b664e1581ecfed590f (diff) | |
download | linux-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')
-rw-r--r-- | scripts/parse_kconfig/Makefile | 3 |
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 |