From dc3c959a5f6d74e91f9a2d997d20e47b07b65628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sat, 11 Apr 2015 13:18:07 +0200 Subject: Kconfig_parser renamed to parse_kconfig --- scripts/parse_kconfig/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scripts/parse_kconfig/Makefile (limited to 'scripts/parse_kconfig/Makefile') diff --git a/scripts/parse_kconfig/Makefile b/scripts/parse_kconfig/Makefile new file mode 100644 index 0000000..f582673 --- /dev/null +++ b/scripts/parse_kconfig/Makefile @@ -0,0 +1,19 @@ +.PHONY: all clean +.SUFFIXES: + +all: parser + +KCONFIG_PREFIX = ../shared/kconfig +include $(KCONFIG_PREFIX)/files.mk + +SRC = parser.c \ + cnfexpr.c \ + symlist.c \ + output.c +CFLAGS = -O0 -w -ggdb + +parser: $(SRC) $(KCONFIG_SRC) + gcc $(CFLAGS) -o $@ $^ -I$(KCONFIG_PREFIX) + +clean:: + $(RM) parser -- cgit v1.2.3