kconfig/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 07 09:04:02 2007 +0000 (2007-05-07)
changeset 63 89b41dbffe8d
parent 54 7498a8d4b6e5
child 88 f67b52e42fd1
permissions -rw-r--r--
Merge the save-sample branch to trunk:
- reorder most of the environment setup,
- geting, extracting and patching are now components' sub-actions,
- save the current config as a sample to be used as a pre-configured target.
     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 # Help text used by make help
    29 help::
    30 	@echo  'General purpose configuration targets:'
    31 	@echo  '  config         - Update current config using a line-oriented program'
    32 	@echo  '  menuconfig     - Update current config using a menu based program'
    33 	@echo  '  oldconfig      - Update current config using a provided .config as base'
    34 	@# saveconfig is listed here for homogeneity, but implemented in samples/Makefile
    35 	@echo  '  saveconfig     - Save current config as a preconfigured target'
    36 	@echo  ''
    37 
    38 # Cheesy build
    39 
    40 SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
    41 
    42 %.c: %.c_shipped
    43 	@ln -s $(notdir $<) $@
    44 
    45 kconfig/mconf: $(SHIPPED) kconfig/mconf.c
    46 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
    47 		-lcurses "-DCURSES_LOC=<ncurses.h>"
    48 
    49 kconfig/conf: $(SHIPPED) kconfig/conf.c
    50 	@$(HOST_CC) $(CFLAGS) -o $@ kconfig/{conf.c,zconf.tab.c}
    51 
    52 clean::
    53 	@rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}