Changeset 492

Show
Ignore:
Timestamp:
08/02/06 22:37:51 (2 years ago)
Author:
wbx
Message:

add autobuild, still busybox need to be excluded in any good way. no idea for that at the moment. remove unused stuff.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/Makefile

    r418 r492  
    6969        @${GMAKE_INV} oldconfig 
    7070 
     71autobuild: .prereq_done 
     72        @${GMAKE_INV} autobuild 
     73 
    7174package_index: .prereq_done 
    7275        @${GMAKE_INV} package_index 
    73  
    74 source: .prereq_done 
    75         @${GMAKE_INV} source 
    7676 
    7777target_clean: .prereq_done 
     
    8080world: .prereq_done 
    8181        @${GMAKE_INV} world 
    82  
    83 update-package: 
    84         @find target/linux/package package/ -name Config.in -exec \ 
    85                 grep -r FWRT_PACKAGE {} \; | \ 
    86             awk '/config/ { print $$2 }' | sort | grep -v config | \ 
    87             sed -e 's#.*#&=m#' >>.config 
    8882 
    8983prereq: 
  • trunk/freewrt/build.mk

    r472 r492  
    1111CONFIG = package/config 
    1212 
    13 noconfig_targets := menuconfig config oldconfig randconfig \ 
    14         allyesconfig allnoconfig tags 
     13noconfig_targets := menuconfig config tags autobuild 
    1514 
    1615# Pull in the user's configuration file 
     
    2524 
    2625.NOTPARALLEL: 
    27 .PHONY: all world clean cleandir distclean image_clean target_clean source 
     26.PHONY: all world clean cleandir distclean image_clean target_clean 
    2827 
    2928# In this section, we need .config 
     
    3332        ${BASH} ${TOPDIR}/scripts/scan-pkgs.sh 
    3433        $(MAKE) -f build.mk tools/install toolchain/install target/compile package/compile root_clean package/install target/install package_index 
    35         @$(TRACE) Build complete. 
     34        @$(TRACE) Build complete. See bin/ for the firmware and packages. 
    3635 
    3736package_index: 
     
    125124        @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN) 
    126125 
    127 randconfig: $(CONFIG)/conf 
     126autobuild: $(CONFIG)/conf 
    128127        @-touch .config 
    129         @$(CONFIG)/conf -r $(CONFIG_CONFIG_IN) 
    130  
    131 allyesconfig: $(CONFIG)/conf 
    132         @-touch .config 
    133         @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN) 
    134  
    135 allnoconfig: $(CONFIG)/conf 
    136         @-touch .config 
    137         @$(CONFIG)/conf -n $(CONFIG_CONFIG_IN) 
     128        @$(CONFIG)/conf -m $(CONFIG_CONFIG_IN) 
    138129 
    139130tools/install-lbin: