Changeset 492
- Timestamp:
- 08/02/06 22:37:51 (2 years ago)
- Files:
-
- trunk/freewrt/Makefile (modified) (2 diffs)
- trunk/freewrt/build.mk (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Makefile
r418 r492 69 69 @${GMAKE_INV} oldconfig 70 70 71 autobuild: .prereq_done 72 @${GMAKE_INV} autobuild 73 71 74 package_index: .prereq_done 72 75 @${GMAKE_INV} package_index 73 74 source: .prereq_done75 @${GMAKE_INV} source76 76 77 77 target_clean: .prereq_done … … 80 80 world: .prereq_done 81 81 @${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#' >>.config88 82 89 83 prereq: trunk/freewrt/build.mk
r472 r492 11 11 CONFIG = package/config 12 12 13 noconfig_targets := menuconfig config oldconfig randconfig \ 14 allyesconfig allnoconfig tags 13 noconfig_targets := menuconfig config tags autobuild 15 14 16 15 # Pull in the user's configuration file … … 25 24 26 25 .NOTPARALLEL: 27 .PHONY: all world clean cleandir distclean image_clean target_clean source26 .PHONY: all world clean cleandir distclean image_clean target_clean 28 27 29 28 # In this section, we need .config … … 33 32 ${BASH} ${TOPDIR}/scripts/scan-pkgs.sh 34 33 $(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. 36 35 37 36 package_index: … … 125 124 @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN) 126 125 127 randconfig: $(CONFIG)/conf126 autobuild: $(CONFIG)/conf 128 127 @-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) 138 129 139 130 tools/install-lbin:


