Changeset 41be261 in freewrt for build.mk


Ignore:
Timestamp:
Jun 11, 2006, 11:06:20 PM (20 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
291c947
Parents:
1afde0f
Message:

cosmetic changes to Makefile/build.mk
remove configtest.pl
cosmetic changes in freewrt/toolchain/sed/Makefile, add md5sum

git-svn-id: svn://www.freewrt.org/trunk/freewrt@48 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • build.mk

    r1afde0f r41be261  
    2626export TOPDIR
    2727
    28 ifneq ($(DEVELOPER),)
    29 CONFIG_CONFIG_IN = Config.in.devel
    30 else
    3128CONFIG_CONFIG_IN = Config.in
    32 endif
    3329CONFIG = package/config
    3430
     
    4743
    4844.NOTPARALLEL:
    49 .PHONY: all world clean cleandir distclean image_clean target_clean source configtest
     45.PHONY: all world clean cleandir distclean image_clean target_clean source
    5046
    5147#############################################################
     
    5955include .config.cmd
    6056
    61 world: $(DL_DIR) $(BUILD_DIR) configtest
     57world: $(DL_DIR) $(BUILD_DIR)
    6258        $(MAKE) -f build.mk toolchain/install target/compile package/compile root_clean package/install target/install package_index
    6359        @$(TRACE) Build complete.
    64 
    65 configtest:
    66         -cp .config .config.test
    67         -scripts/configtest.pl
    6860
    6961package_index:
     
    137129menuconfig: $(CONFIG)/mconf
    138130        -touch .config
    139         -cp .config .config.test
    140131        @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
    141         -./scripts/configtest.pl
    142132
    143133config: $(CONFIG)/conf
    144134        -touch .config
    145         -cp .config .config.test
    146135        @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
    147         -./scripts/configtest.pl
    148136
    149137oldconfig: $(CONFIG)/conf
    150138        -touch .config
    151         -cp .config .config.test
    152139        @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
    153         -./scripts/configtest.pl
    154140
    155141randconfig: $(CONFIG)/conf
    156142        -touch .config
    157         -cp .config .config.test
    158143        @$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
    159         -./scripts/configtest.pl
    160144
    161145allyesconfig: $(CONFIG)/conf
    162146        -touch .config
    163         -cp .config .config.test
    164147        @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
    165         -./scripts/configtest.pl
    166148
    167149allnoconfig: $(CONFIG)/conf
    168150        -touch .config
    169         -cp .config .config.test
    170151        @$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
    171         -./scripts/configtest.pl
    172152
    173153endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
Note: See TracChangeset for help on using the changeset viewer.