diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 11:33:30 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 11:33:30 +0200 |
commit | c329c44db94a941974d6bfc8a8f661ebf5efa615 (patch) | |
tree | 9c990658103b2d0f16fe3f246f4d53e55395670d /tools/kconfig | |
parent | Import kconfig from the linux kernel (diff) | |
download | kernel-c329c44db94a941974d6bfc8a8f661ebf5efa615.tar.xz |
Add TARGETBIN and TARGETLIB rules
Diffstat (limited to 'tools/kconfig')
-rw-r--r-- | tools/kconfig/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/kconfig/Makefile b/tools/kconfig/Makefile index 5fa0a0a..b7dd104 100644 --- a/tools/kconfig/Makefile +++ b/tools/kconfig/Makefile @@ -2,16 +2,16 @@ include ../../Makefile.config HOSTTARGETBIN += conf mconf -lxdiag.SRC := \ +lxdiag_srcs := \ lxdialog/checklist.c lxdialog/inputbox.c lxdialog/menubox.c lxdialog/textbox.c lxdialog/util.c lxdialog/yesno.c -parser.SRC := \ +parser_srcs := \ confdata.c expr.c menu.c preprocess.c symbol.c util.c \ lex.yy.c parser.tab.c -conf.SRC := $(parser.SRC) conf.c +conf.SRCS := ${parser_srcs} conf.c -mconf.SRC := $(parser.SRC) $(lxdiag.SRC) mconf.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) |