aboutsummaryrefslogtreecommitdiff
path: root/scripts/kconfig_parser/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig_parser/Makefile')
-rw-r--r--scripts/kconfig_parser/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/kconfig_parser/Makefile b/scripts/kconfig_parser/Makefile
deleted file mode 100644
index f582673..0000000
--- a/scripts/kconfig_parser/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-.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