2007-02-24 11:00:05 +00:00
|
|
|
# ===========================================================================
|
|
|
|
# crosstool-ng configuration targets
|
|
|
|
# These targets are used from top-level makefile
|
|
|
|
|
|
|
|
KCONFIG_TOP = config/config.in
|
|
|
|
obj = ./kconfig
|
|
|
|
PHONY += clean help oldconfig menuconfig config silentoldconfig \
|
|
|
|
randconfig allyesconfig allnoconfig allmodconfig defconfig
|
|
|
|
|
2007-03-12 18:59:31 +00:00
|
|
|
# Darwin (MacOS-X) does not have proper libintl support
|
|
|
|
ifeq ($(shell uname -s),Darwin)
|
|
|
|
KBUILD_NO_NLS:=1
|
|
|
|
endif
|
|
|
|
|
2007-03-11 16:14:06 +00:00
|
|
|
ifneq ($(KBUILD_NO_NLS),)
|
|
|
|
CFLAGS += -DKBUILD_NO_NLS
|
|
|
|
endif
|
|
|
|
|
2007-05-17 22:10:48 +00:00
|
|
|
# Build a list of all config files
|
|
|
|
CONFIG_FILES = $(filter-out %debug.in,$(shell find $(CT_TOP_DIR)/config -type f -name '*.in'))
|
|
|
|
|
2007-05-13 19:03:49 +00:00
|
|
|
# Derive the project version from, well, the project version:
|
|
|
|
export PROJECTVERSION=$(CT_VERSION)
|
|
|
|
|
2007-05-17 22:10:48 +00:00
|
|
|
$(CT_TOP_DIR)/config/debug.in: $(CONFIG_FILES)
|
|
|
|
@echo "# Debug facilities menu" >$@
|
|
|
|
@echo "# Generated file, do not edit!!!" >>$@
|
|
|
|
@echo "menu \"Debug facilities\"" >>$@
|
|
|
|
@for f in $(patsubst $(CT_TOP_DIR)/%,%,$(wildcard $(CT_TOP_DIR)/config/debug/*.in)); do \
|
|
|
|
echo "source $${f}"; \
|
|
|
|
done >>$@
|
|
|
|
@echo "endmenu" >>$@
|
|
|
|
|
|
|
|
menuconfig: $(obj)/mconf $(CT_TOP_DIR)/config/debug.in
|
2007-02-24 11:00:05 +00:00
|
|
|
@$< $(KCONFIG_TOP)
|
|
|
|
|
2007-05-17 22:10:48 +00:00
|
|
|
config: $(obj)/conf $(CT_TOP_DIR)/config/debug.in
|
2007-02-24 11:00:05 +00:00
|
|
|
@$< $(KCONFIG_TOP)
|
|
|
|
|
2007-05-17 22:10:48 +00:00
|
|
|
oldconfig: $(obj)/conf $(CT_TOP_DIR)/config/debug.in
|
2007-02-24 11:00:05 +00:00
|
|
|
@$< -s $(KCONFIG_TOP)
|
|
|
|
|
|
|
|
# Help text used by make help
|
|
|
|
help::
|
|
|
|
@echo 'General purpose configuration targets:'
|
2007-03-12 18:59:31 +00:00
|
|
|
@echo ' config - Update current config using a line-oriented program'
|
|
|
|
@echo ' menuconfig - Update current config using a menu based program'
|
|
|
|
@echo ' oldconfig - Update current config using a provided .config as base'
|
2007-05-07 09:04:02 +00:00
|
|
|
@# saveconfig is listed here for homogeneity, but implemented in samples/Makefile
|
|
|
|
@echo ' saveconfig - Save current config as a preconfigured target'
|
2007-02-24 11:00:05 +00:00
|
|
|
@echo ''
|
|
|
|
|
|
|
|
# Cheesy build
|
|
|
|
|
|
|
|
SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
|
|
|
|
|
|
|
|
%.c: %.c_shipped
|
|
|
|
@ln -s $(notdir $<) $@
|
|
|
|
|
|
|
|
kconfig/mconf: $(SHIPPED) kconfig/mconf.c
|
2007-03-11 16:14:06 +00:00
|
|
|
@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
|
2007-02-24 11:00:05 +00:00
|
|
|
-lcurses "-DCURSES_LOC=<ncurses.h>"
|
|
|
|
|
|
|
|
kconfig/conf: $(SHIPPED) kconfig/conf.c
|
2007-03-11 16:14:06 +00:00
|
|
|
@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{conf.c,zconf.tab.c}
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
clean::
|
|
|
|
@rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}
|
2007-05-17 22:10:48 +00:00
|
|
|
@rm -f "$(CT_TOP_DIR)/config/debug.in"
|