diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-06-29 21:45:11 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-06-29 21:45:11 +0300 |
commit | eb84566d236df6b0dd4f5ce8fc47d66e55e33654 (patch) | |
tree | 7e03ca126781c67336edf9f3ce6888aad23f74e4 /tools/kconfig | |
parent | Rework leaf makefiles to be included from top-level (diff) | |
download | kernel-eb84566d236df6b0dd4f5ce8fc47d66e55e33654.tar.xz |
Fix compiler warnings
Diffstat (limited to 'tools/kconfig')
-rwxr-xr-x | tools/kconfig/build.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/kconfig/build.mk b/tools/kconfig/build.mk index 060dd99..a11a6d4 100755 --- a/tools/kconfig/build.mk +++ b/tools/kconfig/build.mk @@ -22,5 +22,5 @@ HOST_LDFLAGS := $(shell pkg-config --libs ncursesw) lex.yy.c: lexer.l parser.tab.c flex $< -clean: clean.base - @rm -f parser.tab.h parser.tab.c lex.yy.c +CLEAN_FILES += parser.tab.h parser.tab.c lex.yy.c + |