diff options
author | aqua <aqua@iserlohn-fortress.net> | 2024-03-08 22:52:26 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2024-03-10 16:28:12 +0200 |
commit | 3dee61f7f07298f39225157f3c3df1b837aef169 (patch) | |
tree | 1c2991f57d1bc7b33d5864a67864c4318f3c5780 /tools/kconfig/mk | |
parent | Bazel build (diff) | |
download | kernel-3dee61f7f07298f39225157f3c3df1b837aef169.tar.xz |
Removed tools/kconfig
Diffstat (limited to 'tools/kconfig/mk')
-rwxr-xr-x | tools/kconfig/mk | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/kconfig/mk b/tools/kconfig/mk deleted file mode 100755 index a11a6d4..0000000 --- a/tools/kconfig/mk +++ /dev/null @@ -1,26 +0,0 @@ -#!../../mach - -HOSTTARGETBIN += conf mconf - -lxdiag_srcs := \ - lxdialog/checklist.c lxdialog/inputbox.c lxdialog/menubox.c lxdialog/textbox.c lxdialog/util.c lxdialog/yesno.c - -parser_srcs := \ - confdata.c expr.c menu.c preprocess.c symbol.c util.c \ - lex.yy.c parser.tab.c - -conf.SRCS := ${parser_srcs} conf.c - -mconf.SRCS := ${parser_srcs} ${lxdiag_srcs} mconf.c - -HOST_CFLAGS := -D_GNU_SOURCE $(shell pkg-config --cflags ncursesw) -HOST_LDFLAGS := $(shell pkg-config --libs ncursesw) - -%.tab.c: %.y - bison --header --debug $< - -lex.yy.c: lexer.l parser.tab.c - flex $< - -CLEAN_FILES += parser.tab.h parser.tab.c lex.yy.c - |