kconfig/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 12 18:59:31 2007 +0000 (2007-03-12)
changeset 19 d80e6dedcc13
parent 18 cc2869cc3121
child 54 7498a8d4b6e5
permissions -rw-r--r--
Auto-detect Darwin (MacOS-X) and disable libintl for during build for this platform.
A bit of help tweaking.
     1 # ===========================================================================
     2 # crosstool-ng configuration targets
     3 # These targets are used from top-level makefile
     4 
     5 KCONFIG_TOP = config/config.in
     6 obj = ./kconfig
     7 PHONY += clean help oldconfig menuconfig config silentoldconfig \
     8 	randconfig allyesconfig allnoconfig allmodconfig defconfig
     9 
    10 # Darwin (MacOS-X) does not have proper libintl support
    11 ifeq ($(shell uname -s),Darwin)
    12 KBUILD_NO_NLS:=1
    13 endif
    14 
    15 ifneq ($(KBUILD_NO_NLS),)
    16 CFLAGS += -DKBUILD_NO_NLS
    17 endif
    18 
    19 menuconfig: $(obj)/mconf
    20 	@$< $(KCONFIG_TOP)
    21 
    22 config: $(obj)/conf
    23 	@$< $(KCONFIG_TOP)
    24 
    25 oldconfig: $(obj)/conf
    26 	@$< -s $(KCONFIG_TOP)
    27 
    28 # Build a list of all available samples
    29 SAMPLES = $(patsubst $(CT_TOP_DIR)/samples/%,%,$(filter-out %Makefile,$(wildcard $(CT_TOP_DIR)/samples/*)))
    30 SAMPLES_CONFIG = $(patsubst %,%_config,$(SAMPLES))
    31 .PHONY: $(SAMPLES_CONFIG)
    32 $(SAMPLES_CONFIG):
    33 	@cp "$(CT_TOP_DIR)/samples/$(patsubst %_config,%,$@)/crosstool.config" "$(CT_TOP_DIR)/.config"
    34 	@$(MAKE) oldconfig
    35 
    36 # Help text used by make help
    37 help::
    38 	@echo  'General purpose configuration targets:'
    39 	@echo  '  config         - Update current config using a line-oriented program'
    40 	@echo  '  menuconfig     - Update current config using a menu based program'
    41 	@echo  '  oldconfig      - Update current config using a provided .config as base'
    42 	@echo
    43 	@echo  'Preconfigured configuration targets:'
    44 	@for s in $(SAMPLES_CONFIG); do   \
    45 	    echo  "  $${s}"; \
    46 	 done
    47 	@echo  ''
    48 
    49 # Cheesy build
    50 
    51 SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
    52 
    53 %.c: %.c_shipped
    54 	@ln -s $(notdir $<) $@
    55 
    56 kconfig/mconf: $(SHIPPED) kconfig/mconf.c
    57 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
    58 		-lcurses "-DCURSES_LOC=<ncurses.h>"
    59 
    60 kconfig/conf: $(SHIPPED) kconfig/conf.c
    61 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{conf.c,zconf.tab.c}
    62 
    63 clean::
    64 	@rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}