Changeset 3e1f33c in freewrt for build.mk


Ignore:
Timestamp:
Jul 27, 2006, 7:04:19 AM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
7ffa231
Parents:
9772d83
Message:

hide some warnings and output

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • build.mk

    r9772d83 r3e1f33c  
    4646$(STAMP_DIR):
    4747        @mkdir -p $(STAMP_DIR)
    48 
    49 source: tools/source toolchain/source package/source target/source
    5048
    5149package/%:
     
    111109
    112110$(CONFIG)/conf:
    113         $(MAKE) -C $(CONFIG) conf
     111        @$(MAKE) -C $(CONFIG) conf > /dev/null 2>&1
    114112$(CONFIG)/mconf:
    115         $(MAKE) -C $(CONFIG)
     113        @$(MAKE) -C $(CONFIG) > /dev/null 2>&1
    116114
    117115menuconfig: $(CONFIG)/mconf
    118         -touch .config
     116        @-touch .config
    119117        @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
    120118
    121119config: $(CONFIG)/conf
    122         -touch .config
     120        @-touch .config
    123121        @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
    124122
    125123oldconfig: $(CONFIG)/conf
    126         -touch .config
     124        @-touch .config
    127125        @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
    128126
    129127randconfig: $(CONFIG)/conf
    130         -touch .config
     128        @-touch .config
    131129        @$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
    132130
    133131allyesconfig: $(CONFIG)/conf
    134         -touch .config
     132        @-touch .config
    135133        @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
    136134
    137135allnoconfig: $(CONFIG)/conf
    138         -touch .config
     136        @-touch .config
    139137        @$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
    140138
Note: See TracChangeset for help on using the changeset viewer.