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-11 16:14:06 +00:00
|
|
|
ifneq ($(KBUILD_NO_NLS),)
|
|
|
|
CFLAGS += -DKBUILD_NO_NLS
|
|
|
|
endif
|
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
menuconfig: $(obj)/mconf
|
|
|
|
@$< $(KCONFIG_TOP)
|
|
|
|
|
|
|
|
config: $(obj)/conf
|
|
|
|
@$< $(KCONFIG_TOP)
|
|
|
|
|
|
|
|
oldconfig: $(obj)/conf
|
|
|
|
@$< -s $(KCONFIG_TOP)
|
|
|
|
|
|
|
|
# Build a list of all available samples
|
|
|
|
SAMPLES = $(patsubst $(CT_TOP_DIR)/samples/%,%,$(filter-out %Makefile,$(wildcard $(CT_TOP_DIR)/samples/*)))
|
|
|
|
SAMPLES_CONFIG = $(patsubst %,%_config,$(SAMPLES))
|
|
|
|
.PHONY: $(SAMPLES_CONFIG)
|
|
|
|
$(SAMPLES_CONFIG):
|
|
|
|
@cp "$(CT_TOP_DIR)/samples/$(patsubst %_config,%,$@)/crosstool.config" "$(CT_TOP_DIR)/.config"
|
|
|
|
@$(MAKE) oldconfig
|
|
|
|
|
|
|
|
# Help text used by make help
|
|
|
|
help::
|
|
|
|
@echo 'General purpose configuration targets:'
|
2007-03-04 22:37:11 +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-02-24 11:00:05 +00:00
|
|
|
@echo
|
|
|
|
@echo 'Preconfigured configuration targets:'
|
|
|
|
@for s in $(SAMPLES_CONFIG); do \
|
|
|
|
echo " $${s}"; \
|
|
|
|
done
|
|
|
|
@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}
|