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