kconfig/kconfig.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat May 03 17:51:16 2008 +0000 (2008-05-03)
changeset 486 92f6149c4275
parent 370 26fe0433ce29
child 628 87802cb25a0f
permissions -rw-r--r--
Some people are reposrting that ftp does not work on their network, probably due to proxies, while http does work.
Some (most) of the sites we use toretrieve tarballs have http equivallent for the ftp service. Use http as a failover.
There's no solution for those sites that do not have such an http equivalent.

/trunk/scripts/build/binutils.sh | 5 2 3 0 ++---
/trunk/scripts/build/libc_glibc.sh | 4 2 2 0 ++--
/trunk/scripts/build/libc_uClibc.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/400-ltrace.sh | 2 1 1 0 +-
/trunk/scripts/build/debug/300-gdb.sh | 8 3 5 0 +++-----
/trunk/scripts/build/kernel_linux.sh | 7 2 5 0 ++-----
/trunk/scripts/build/cc_gcc.sh | 6 2 4 0 ++----
/trunk/scripts/build/gmp.sh | 4 1 3 0 +---
8 files changed, 14 insertions(+), 24 deletions(-)
     1 # ===========================================================================
     2 # crosstool-NG configuration targets
     3 # These targets are used from top-level makefile
     4 
     5 # Derive the project version from, well, the project version:
     6 export PROJECTVERSION=$(CT_VERSION)
     7 
     8 KCONFIG_TOP = config/config.in
     9 obj = $(CT_TOP_DIR)/kconfig
    10 PHONY += clean help oldconfig menuconfig config defoldconfig extractconfig
    11 
    12 # Darwin (MacOS-X) does not have proper libintl support
    13 ifeq ($(shell uname -s),Darwin)
    14 KBUILD_NO_NLS:=1
    15 endif
    16 
    17 ifneq ($(KBUILD_NO_NLS),)
    18 CFLAGS += -DKBUILD_NO_NLS
    19 endif
    20 
    21 # Build a list of all config files
    22 DEBUG_CONFIG_FILES = $(shell find $(CT_LIB_DIR)/config/debug -type f -name '*.in')
    23 TOOLS_CONFIG_FILES = $(shell find $(CT_LIB_DIR)/config/tools -type f -name '*.in')
    24 
    25 STATIC_CONFIG_FILES = $(shell find $(CT_LIB_DIR)/config -type f -name '*.in')
    26 GEN_CONFIG_FILES=$(CT_TOP_DIR)/config.gen/debug.in	\
    27 				 $(CT_TOP_DIR)/config.gen/tools.in
    28 
    29 CONFIG_FILES=$(STATIC_CONFIG_FILES) $(GEN_CONFIG_FILES)
    30 
    31 $(GEN_CONFIG_FILES):: $(CT_TOP_DIR)/config.gen
    32 
    33 $(CT_TOP_DIR)/config.gen:
    34 	@mkdir -p $(CT_TOP_DIR)/config.gen
    35 
    36 $(CT_TOP_DIR)/config.gen/debug.in:: $(DEBUG_CONFIG_FILES)
    37 	@echo "# Debug facilities menu" >$@
    38 	@echo "# Generated file, do not edit!!!" >>$@
    39 	@echo "menu \"Debug facilities\"" >>$@
    40 	@for f in $(patsubst $(CT_TOP_DIR)/%,%,$(wildcard $(CT_TOP_DIR)/config/debug/*.in)); do \
    41 	     echo "source $${f}";                                                               \
    42 	 done >>$@
    43 	@echo "endmenu" >>$@
    44 
    45 $(CT_TOP_DIR)/config.gen/tools.in:: $(TOOLS_CONFIG_FILES)
    46 	@echo "# Tools facilities menu" >$@
    47 	@echo "# Generated file, do not edit!!!" >>$@
    48 	@echo "menu \"Tools facilities\"" >>$@
    49 	@for f in $(patsubst $(CT_TOP_DIR)/%,%,$(wildcard $(CT_TOP_DIR)/config/tools/*.in)); do \
    50 	     echo "source $${f}";                                                               \
    51 	 done >>$@
    52 	@echo "endmenu" >>$@
    53 
    54 config menuconfig oldconfig defoldconfig extractconfig:: $(KCONFIG_TOP)
    55 
    56 $(KCONFIG_TOP):
    57 	@ln -sf $(CT_LIB_DIR)/config config
    58 
    59 menuconfig:: $(obj)/mconf $(CONFIG_FILES)
    60 	@$< $(KCONFIG_TOP)
    61 
    62 config:: $(obj)/conf $(CONFIG_FILES)
    63 	@$< $(KCONFIG_TOP)
    64 
    65 oldconfig:: $(obj)/conf $(CONFIG_FILES)
    66 	@$< -s $(KCONFIG_TOP)
    67 
    68 defoldconfig:: $(obj)/conf $(CONFIG_FILES)
    69 	@yes "" |$< -s $(KCONFIG_TOP) >/dev/null
    70 
    71 extractconfig:: $(obj)/conf $(CONFIG_FILES)
    72 	@$(CT_LIB_DIR)/tools/extract-config.sh >.config
    73 	@$< -s $(KCONFIG_TOP)
    74 
    75 # Help text used by make help
    76 help-config::
    77 	@echo  '  config             - Update current config using a line-oriented program'
    78 	@echo  '  menuconfig         - Update current config using a menu based program'
    79 	@echo  '  oldconfig          - Update current config using a provided .config as base'
    80 	@echo  '  extractconfig      - Create a new config using options extracted from a'
    81 	@echo  '                       build log piped into stdin'
    82 
    83 # Cheesy build
    84 
    85 SHIPPED := $(CT_LIB_DIR)/kconfig/zconf.tab.c $(CT_LIB_DIR)/kconfig/lex.zconf.c $(CT_LIB_DIR)/kconfig/zconf.hash.c
    86 
    87 %.c: %.c_shipped
    88 	@ln -s $(notdir $<) $@
    89 
    90 $(obj)/conf $(obj)/mconf:: $(obj)
    91 
    92 $(obj):
    93 	@mkdir -p $(obj)
    94 
    95 $(obj)/mconf:: $(SHIPPED) $(CT_LIB_DIR)/kconfig/mconf.c
    96 	@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
    97 	     $(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ccflags)              \
    98 	     $(shell $(CT_LIB_DIR)/kconfig/lxdialog/check-lxdialog.sh -ldflags $(HOST_CC))
    99 
   100 $(obj)/conf:: $(SHIPPED) $(CT_LIB_DIR)/kconfig/conf.c
   101 	@$(HOST_CC) $(CFLAGS) -o $@ $(CT_LIB_DIR)/kconfig/{conf.c,zconf.tab.c}
   102 
   103 clean::
   104 	@rm -f $(CT_TOP_DIR)/kconfig/{,m}conf
   105 	@rm -f $(SHIPPED)
   106 	@rmdir --ignore-fail-on-non-empty $(CT_TOP_DIR)/kconfig 2>/dev/null || true
   107 	@rm -f $(CT_TOP_DIR)/config 2>/dev/null || true
   108 	@rm -rf $(CT_TOP_DIR)/config.gen