diff options
author | Karel Kočí <cynerd@email.cz> | 2015-05-01 20:55:43 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-05-01 20:55:43 +0200 |
commit | 3fb6326fc36c69aa0b66de4823b116d7c0a9486c (patch) | |
tree | e335cf1dac16f08048864d8c4189e66be8ea11eb /scripts/parse_kconfig/Makefile | |
parent | cd1b4f5e954f925bb7689189a5c2fd5fef52d745 (diff) | |
download | linux-conf-perf-3fb6326fc36c69aa0b66de4823b116d7c0a9486c.tar.gz linux-conf-perf-3fb6326fc36c69aa0b66de4823b116d7c0a9486c.tar.bz2 linux-conf-perf-3fb6326fc36c69aa0b66de4823b116d7c0a9486c.zip |
parse_kconfig rewriten
parse_kconfig should now generate full dependency.
It is not transforming whole expression to CNF, but only pairs.
Diffstat (limited to 'scripts/parse_kconfig/Makefile')
-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 98c8531..4b8a538 100644 --- a/scripts/parse_kconfig/Makefile +++ b/scripts/parse_kconfig/Makefile @@ -8,7 +8,8 @@ KCONFIG_PREFIX = ../shared/kconfig include $(KCONFIG_PREFIX)/files.mk SRC = parse.c \ - cnfexpr.c \ + boolexpr.c \ + cnfbuild.c \ symlist.c \ output.c OBJ = $(patsubst %.c,%.o,$(SRC)) |