Changeset 529
- Timestamp:
- 08/24/06 14:39:50 (2 years ago)
- Files:
-
- trunk/freewrt/.defconfig (added)
- trunk/freewrt/Makefile (modified) (1 diff)
- trunk/freewrt/build.mk (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Makefile
r520 r529 71 71 autobuild: .prereq_done 72 72 @${GMAKE_INV} autobuild 73 74 snapshots: .prereq_done 75 @${GMAKE_INV} snapshots 73 76 74 77 package_index: .prereq_done trunk/freewrt/build.mk
r516 r529 11 11 CONFIG = package/config 12 12 13 noconfig_targets := menuconfig config tags autobuild 13 noconfig_targets := menuconfig config tags autobuild snapshots 14 14 15 15 # Pull in the user's configuration file … … 101 101 @echo "Start the build with \"make\" or with \"make v\" to be verbose" 102 102 103 $(SNAPSHOT_DIR): 104 @mkdir -p snapshots 105 103 106 # configuration 104 107 # --------------------------------------------------------------------------- … … 127 130 @cat .busybox-config .config.autobuild > .config 128 131 132 snapshots: $(CONFIG)/conf $(SNAPSHOT_DIR) 133 @-touch .config 134 @$(CONFIG)/conf -d $(CONFIG_CONFIG_IN) 135 @for i in `awk '/^config FWRT_LINUX/ { print $$2 }' target/Config.in`; \ 136 do \ 137 $(TOPDIR)/lbin/sed -i -e s#FWRT_LINUX_MODEL#$$i# .config && \ 138 $(MAKE) && \ 139 cp bin/freewrt-* snapshots/ && \ 140 $(MAKE) clean; \ 141 done 142 129 143 tools/install-lbin: 130 144 $(MAKE) -C tools install-lbin


