mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-30 09:38:52 +00:00
Rework the kconfig stuff
- better handle config file generation dependencies - get rid of CT_TOP_DIR where useless - rearrange code to be cleaner, and add adequate '#----' comments to split the different parts - a few eye-candy here and there /trunk/kconfig/kconfig.mk | 158 99 59 0 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 99 insertions(+), 59 deletions(-)
This commit is contained in:
parent
ab048ad81d
commit
4b27b41f41
@ -5,8 +5,11 @@
|
|||||||
# Derive the project version from, well, the project version:
|
# Derive the project version from, well, the project version:
|
||||||
export PROJECTVERSION=$(CT_VERSION)
|
export PROJECTVERSION=$(CT_VERSION)
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
|
# Some static /configuration/
|
||||||
|
|
||||||
KCONFIG_TOP = config/config.in
|
KCONFIG_TOP = config/config.in
|
||||||
obj = $(CT_TOP_DIR)/kconfig
|
obj = kconfig
|
||||||
PHONY += clean help oldconfig menuconfig defoldconfig
|
PHONY += clean help oldconfig menuconfig defoldconfig
|
||||||
|
|
||||||
# Darwin (MacOS-X) does not have proper libintl support
|
# Darwin (MacOS-X) does not have proper libintl support
|
||||||
@ -18,39 +21,65 @@ ifneq ($(KBUILD_NO_NLS),)
|
|||||||
CFLAGS += -DKBUILD_NO_NLS
|
CFLAGS += -DKBUILD_NO_NLS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Build a list of all config files
|
#-----------------------------------------------------------
|
||||||
ARCH_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/arch/*.in)
|
# List all config files, source and generated
|
||||||
KERNEL_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/kernel/*.in)
|
|
||||||
CC_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/cc/*.in)
|
|
||||||
LIBC_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/libc/*.in)
|
|
||||||
DEBUG_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/debug/*.in)
|
|
||||||
TOOL_CONFIG_FILES = $(wildcard $(CT_LIB_DIR)/config/tools/*.in)
|
|
||||||
|
|
||||||
STATIC_CONFIG_FILES = $(shell find $(CT_LIB_DIR)/config -type f -name '*.in')
|
# Build the list of all source config files
|
||||||
GEN_CONFIG_FILES=$(CT_TOP_DIR)/config.gen/arch.in \
|
STATIC_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(shell find $(CT_LIB_DIR)/config -type f -name '*.in' 2>/dev/null))
|
||||||
$(CT_TOP_DIR)/config.gen/kernel.in \
|
# ... and how to access them:
|
||||||
$(CT_TOP_DIR)/config.gen/cc.in \
|
$(STATIC_CONFIG_FILES): config
|
||||||
$(CT_TOP_DIR)/config.gen/libc.in \
|
|
||||||
$(CT_TOP_DIR)/config.gen/tools.in \
|
|
||||||
$(CT_TOP_DIR)/config.gen/debug.in
|
|
||||||
|
|
||||||
CONFIG_FILES=$(STATIC_CONFIG_FILES) $(GEN_CONFIG_FILES)
|
# Build a list of per-component-type source config files
|
||||||
|
ARCH_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/arch/*.in))
|
||||||
|
KERNEL_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/kernel/*.in))
|
||||||
|
CC_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/cc/*.in))
|
||||||
|
LIBC_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/libc/*.in))
|
||||||
|
DEBUG_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/debug/*.in))
|
||||||
|
TOOL_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(wildcard $(CT_LIB_DIR)/config/tools/*.in))
|
||||||
|
|
||||||
# Build list of items
|
# Build the list of generated config files
|
||||||
ARCHS = $(patsubst $(CT_LIB_DIR)/config/arch/%.in,%,$(ARCH_CONFIG_FILES))
|
GEN_CONFIG_FILES = config.gen/arch.in \
|
||||||
KERNELS = $(patsubst $(CT_LIB_DIR)/config/kernel/%.in,%,$(KERNEL_CONFIG_FILES))
|
config.gen/kernel.in \
|
||||||
CCS = $(patsubst $(CT_LIB_DIR)/config/cc/%.in,%,$(CC_CONFIG_FILES))
|
config.gen/cc.in \
|
||||||
LIBCS = $(patsubst $(CT_LIB_DIR)/config/libc/%.in,%,$(LIBC_CONFIG_FILES))
|
config.gen/libc.in \
|
||||||
DEBUGS = $(patsubst $(CT_LIB_DIR)/config/debug/%.in,%,$(DEBUG_CONFIG_FILES))
|
config.gen/tools.in \
|
||||||
TOOLS = $(patsubst $(CT_LIB_DIR)/config/tools/%.in,%,$(TOOL_CONFIG_FILES))
|
config.gen/debug.in
|
||||||
|
# ... and how to access them:
|
||||||
$(GEN_CONFIG_FILES): $(CT_TOP_DIR)/config.gen \
|
# Generated files depends on kconfig.mk (this file) because it has the
|
||||||
|
# functions needed to build the genrated files, and thus they might
|
||||||
|
# need re-generation if kconfig.mk changes
|
||||||
|
$(GEN_CONFIG_FILES): config.gen \
|
||||||
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen: $(KCONFIG_TOP)
|
# KCONFIG_TOP should already be in STATIC_CONFIG_FILES, anyway...
|
||||||
@mkdir -p $(CT_TOP_DIR)/config.gen
|
CONFIG_FILES = $(sort $(KCONFIG_TOP) $(STATIC_CONFIG_FILES) $(GEN_CONFIG_FILES))
|
||||||
|
|
||||||
# Function build_gen_choice_in:
|
# Where to access to the source config files from
|
||||||
|
config:
|
||||||
|
@echo " LN config"
|
||||||
|
@ln -s $(CT_LIB_DIR)/config config
|
||||||
|
|
||||||
|
# Where to store the generated config files into
|
||||||
|
config.gen:
|
||||||
|
@echo " MKDIR config.gen"
|
||||||
|
@mkdir -p config.gen
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
|
# Build list of per-component-type items to easily build generated files
|
||||||
|
|
||||||
|
ARCHS = $(patsubst config/arch/%.in,%,$(ARCH_CONFIG_FILES))
|
||||||
|
KERNELS = $(patsubst config/kernel/%.in,%,$(KERNEL_CONFIG_FILES))
|
||||||
|
CCS = $(patsubst config/cc/%.in,%,$(CC_CONFIG_FILES))
|
||||||
|
LIBCS = $(patsubst config/libc/%.in,%,$(LIBC_CONFIG_FILES))
|
||||||
|
DEBUGS = $(patsubst config/debug/%.in,%,$(DEBUG_CONFIG_FILES))
|
||||||
|
TOOLS = $(patsubst config/tools/%.in,%,$(TOOL_CONFIG_FILES))
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
|
# Helper functions to ease building generated config files
|
||||||
|
|
||||||
|
# The function 'build_gen_choice_in' builds a choice-menu of a list of
|
||||||
|
# components in the given list, also adding source-ing of associazted
|
||||||
|
# config files:
|
||||||
# $1 : destination file
|
# $1 : destination file
|
||||||
# $2 : name for the entries family (eg. Architecture, kernel...)
|
# $2 : name for the entries family (eg. Architecture, kernel...)
|
||||||
# $3 : prefix for the choice entries (eg. ARCH, KERNEL...)
|
# $3 : prefix for the choice entries (eg. ARCH, KERNEL...)
|
||||||
@ -96,19 +125,8 @@ define build_gen_choice_in
|
|||||||
) >$(1)
|
) >$(1)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/arch.in: $(ARCH_CONFIG_FILES)
|
# The function 'build_gen_menu_in' builds a menuconfig for each component in
|
||||||
$(call build_gen_choice_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),Target Architecture,ARCH,config/arch,$(ARCHS))
|
# the given list, source-ing the associated files conditionnaly:
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/kernel.in: $(KERNEL_CONFIG_FILES)
|
|
||||||
$(call build_gen_choice_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),Target OS,KERNEL,config/kernel,$(KERNELS))
|
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/cc.in: $(CC_CONFIG_FILES)
|
|
||||||
$(call build_gen_choice_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),C compiler,CC,config/cc,$(CCS))
|
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/libc.in: $(LIBC_CONFIG_FILES)
|
|
||||||
$(call build_gen_choice_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),C library,LIBC,config/libc,$(LIBCS))
|
|
||||||
|
|
||||||
# Function build_gen_menu_in:
|
|
||||||
# $1 : destination file
|
# $1 : destination file
|
||||||
# $2 : name of entries family (eg. Tools, Debug...)
|
# $2 : name of entries family (eg. Tools, Debug...)
|
||||||
# $3 : prefix for the menu entries (eg. TOOL, DEBUG)
|
# $3 : prefix for the menu entries (eg. TOOL, DEBUG)
|
||||||
@ -142,16 +160,29 @@ define build_gen_menu_in
|
|||||||
) >$(1)
|
) >$(1)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/tools.in: $(TOOL_CONFIG_FILES)
|
#-----------------------------------------------------------
|
||||||
$(call build_gen_menu_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),Tools,TOOL,config/tools,$(TOOLS))
|
# The rules for the generated config files
|
||||||
|
|
||||||
$(CT_TOP_DIR)/config.gen/debug.in: $(DEBUG_CONFIG_FILES)
|
config.gen/arch.in: $(ARCH_CONFIG_FILES)
|
||||||
$(call build_gen_menu_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),Debug,DEBUG,config/debug,$(DEBUGS))
|
$(call build_gen_choice_in,$@,Target Architecture,ARCH,config/arch,$(ARCHS))
|
||||||
|
|
||||||
menuconfig oldconfig defoldconfig: $(KCONFIG_TOP)
|
config.gen/kernel.in: $(KERNEL_CONFIG_FILES)
|
||||||
|
$(call build_gen_choice_in,$@,Target OS,KERNEL,config/kernel,$(KERNELS))
|
||||||
|
|
||||||
$(KCONFIG_TOP):
|
config.gen/cc.in: $(CC_CONFIG_FILES)
|
||||||
@ln -sf $(CT_LIB_DIR)/config config
|
$(call build_gen_choice_in,$@,C compiler,CC,config/cc,$(CCS))
|
||||||
|
|
||||||
|
config.gen/libc.in: $(LIBC_CONFIG_FILES)
|
||||||
|
$(call build_gen_choice_in,$@,C library,LIBC,config/libc,$(LIBCS))
|
||||||
|
|
||||||
|
config.gen/tools.in: $(TOOL_CONFIG_FILES)
|
||||||
|
$(call build_gen_menu_in,$@,Tools,TOOL,config/tools,$(TOOLS))
|
||||||
|
|
||||||
|
config.gen/debug.in: $(DEBUG_CONFIG_FILES)
|
||||||
|
$(call build_gen_menu_in,$@,Debug,DEBUG,config/debug,$(DEBUGS))
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
|
# The configurators rules
|
||||||
|
|
||||||
menuconfig: $(CONFIG_FILES) $(obj)/mconf
|
menuconfig: $(CONFIG_FILES) $(obj)/mconf
|
||||||
@$(obj)/mconf $(KCONFIG_TOP)
|
@$(obj)/mconf $(KCONFIG_TOP)
|
||||||
@ -162,13 +193,16 @@ oldconfig: $(CONFIG_FILES) $(obj)/conf
|
|||||||
defoldconfig: $(CONFIG_FILES) $(obj)/conf
|
defoldconfig: $(CONFIG_FILES) $(obj)/conf
|
||||||
@yes "" |$(obj)/conf -s $(KCONFIG_TOP)
|
@yes "" |$(obj)/conf -s $(KCONFIG_TOP)
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
# Help text used by make help
|
# Help text used by make help
|
||||||
|
|
||||||
help-config::
|
help-config::
|
||||||
@echo ' menuconfig - Update current config using a menu based program'
|
@echo ' menuconfig - Update current config using a menu based program'
|
||||||
@echo ' oldconfig - Update current config using a provided .config as base'
|
@echo ' oldconfig - Update current config using a provided .config as base'
|
||||||
@echo ' build log piped into stdin'
|
@echo ' build log piped into stdin'
|
||||||
|
|
||||||
# Cheesy build
|
#-----------------------------------------------------------
|
||||||
|
# Not-so-cheesy build, needs rework...
|
||||||
|
|
||||||
SHIPPED := $(CT_LIB_DIR)/kconfig/zconf.tab.c $(CT_LIB_DIR)/kconfig/lex.zconf.c $(CT_LIB_DIR)/kconfig/zconf.hash.c
|
SHIPPED := $(CT_LIB_DIR)/kconfig/zconf.tab.c $(CT_LIB_DIR)/kconfig/lex.zconf.c $(CT_LIB_DIR)/kconfig/zconf.hash.c
|
||||||
|
|
||||||
@ -190,7 +224,7 @@ FILES = $(CT_LIB_DIR)/kconfig/confdata.c \
|
|||||||
$(obj)/mconf: $(SHIPPED) $(CT_LIB_DIR)/kconfig/mconf.c \
|
$(obj)/mconf: $(SHIPPED) $(CT_LIB_DIR)/kconfig/mconf.c \
|
||||||
$(HEADERS) $(FILES) \
|
$(HEADERS) $(FILES) \
|
||||||
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
||||||
@echo ' LD kconfig/mconf'
|
@echo ' LD $@'
|
||||||
@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
|
@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
|
||||||
$(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ccflags) \
|
$(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ccflags) \
|
||||||
$(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ldflags $(HOST_CC))
|
$(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ldflags $(HOST_CC))
|
||||||
@ -198,11 +232,17 @@ $(obj)/mconf: $(SHIPPED) $(CT_LIB_DIR)/kconfig/mconf.c \
|
|||||||
$(obj)/conf: $(SHIPPED) $(CT_LIB_DIR)/kconfig/conf.c \
|
$(obj)/conf: $(SHIPPED) $(CT_LIB_DIR)/kconfig/conf.c \
|
||||||
$(HEADERS) $(FILES) \
|
$(HEADERS) $(FILES) \
|
||||||
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
$(CT_LIB_DIR)/kconfig/kconfig.mk
|
||||||
@echo ' LD kconfig/conf'
|
@echo ' LD $@'
|
||||||
@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{conf.c,zconf.tab.c}
|
@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{conf.c,zconf.tab.c}
|
||||||
|
|
||||||
|
#-----------------------------------------------------------
|
||||||
|
# Cleaning up the mess...
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
@rm -f $(CT_TOP_DIR)/kconfig/{,m}conf
|
@echo " CLEAN kconfig"
|
||||||
@rmdir --ignore-fail-on-non-empty $(CT_TOP_DIR)/kconfig 2>/dev/null || true
|
@rm -f kconfig/{,m}conf
|
||||||
@rm -f $(CT_TOP_DIR)/config 2>/dev/null || true
|
@rmdir --ignore-fail-on-non-empty kconfig 2>/dev/null || true
|
||||||
@rm -rf $(CT_TOP_DIR)/config.gen
|
@echo " CLEAN config"
|
||||||
|
@rm -f config 2>/dev/null || true
|
||||||
|
@echo " CLEAN config.gen"
|
||||||
|
@rm -rf config.gen
|
||||||
|
Loading…
Reference in New Issue
Block a user