kconfig/Makefile
changeset 2 687f86f2a01c
parent 1 eeea35fbf182
child 11 1e91bf61f215
     1.1 --- a/kconfig/Makefile	Sat Feb 24 11:00:05 2007 +0000
     1.2 +++ b/kconfig/Makefile	Sat Feb 24 19:17:40 2007 +0000
     1.3 @@ -16,18 +16,6 @@
     1.4  oldconfig: $(obj)/conf
     1.5  	@$< -s $(KCONFIG_TOP)
     1.6  
     1.7 -randconfig: $(obj)/conf
     1.8 -	@$< -r $(KCONFIG_TOP)
     1.9 -
    1.10 -allyesconfig: $(obj)/conf
    1.11 -	@$< -y $(KCONFIG_TOP)
    1.12 -
    1.13 -allnoconfig: $(obj)/conf
    1.14 -	@$< -n $(KCONFIG_TOP)
    1.15 -
    1.16 -defconfig: $(obj)/conf
    1.17 -	@$< -d $(KCONFIG_TOP)
    1.18 -
    1.19  # Build a list of all available samples
    1.20  SAMPLES = $(patsubst $(CT_TOP_DIR)/samples/%,%,$(filter-out %Makefile,$(wildcard $(CT_TOP_DIR)/samples/*)))
    1.21  SAMPLES_CONFIG = $(patsubst %,%_config,$(SAMPLES))
    1.22 @@ -42,10 +30,6 @@
    1.23  	@echo  '  config	  - Update current config utilising a line-oriented program'
    1.24  	@echo  '  menuconfig	  - Update current config utilising a menu based program'
    1.25  	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
    1.26 -	@echo  '  randconfig	  - New config with random answer to all options'
    1.27 -	@echo  '  defconfig	  - New config with default answer to all options'
    1.28 -	@echo  '  allyesconfig	  - New config where all options are accepted with yes'
    1.29 -	@echo  '  allnoconfig	  - New config where all options are answered with no'
    1.30  	@echo
    1.31  	@echo  'Preconfigured configuration targets:'
    1.32  	@for s in $(SAMPLES_CONFIG); do   \