Changeset 2631
- Timestamp:
- 05/23/07 16:23:29 (2 years ago)
- Files:
-
- trunk/freewrt/Makefile (modified) (2 diffs)
- trunk/freewrt/mk/build.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Makefile
r2629 r2631 81 81 82 82 config: .prereq_done 83 @${GMAKE_INV} config83 @${GMAKE_INV} _config W= 84 84 85 85 oldconfig: .prereq_done 86 @${GMAKE_INV} oldconfig W=-o86 @${GMAKE_INV} _config W=-o 87 87 88 88 wconfig: .prereq_done 89 @${GMAKE_INV} oldconfig W=-A89 @${GMAKE_INV} _config W=-A 90 90 91 91 cleandir: .prereq_done … … 106 106 107 107 allnoconfig: .prereq_done 108 @${GMAKE_INV} allnoconfig108 @${GMAKE_INV} _config W=-n 109 109 110 110 allmodconfig: .prereq_done 111 @${GMAKE_INV} allmodconfig111 @${GMAKE_INV} _mconfig W=-o RCONFIG=Config.in 112 112 113 113 snapshotconfig: .prereq_done 114 @${GMAKE_INV} snapshotconfig114 @${GMAKE_INV} _mconfig W=-o RCONFIG=Config.in.snapshot 115 115 116 116 package_index: .prereq_done trunk/freewrt/mk/build.mk
r2629 r2631 131 131 ${POSTCONFIG} 132 132 133 config: $(CONFIG)/conf 134 -touch .config 135 $(CONFIG)/conf $(CONFIG_CONFIG_IN) 136 ${POSTCONFIG} 137 138 oldconfig: $(CONFIG)/conf 133 _config: $(CONFIG)/conf 139 134 -touch .config 140 135 $(CONFIG)/conf ${W} $(CONFIG_CONFIG_IN) 141 136 ${POSTCONFIG} 142 137 143 allnoconfig: $(CONFIG)/conf144 -touch .config145 $(CONFIG)/conf -n $(CONFIG_CONFIG_IN)146 ${POSTCONFIG}147 148 138 # add patterns for config symbols to always restore from default here 149 139 RESTORE_PATTERNS := BUSYBOX CCACHE FWRT_RUNTIME 150 allmodconfig: $(CONFIG)/conf 151 $(CONFIG)/conf -m $(CONFIG_CONFIG_IN) 152 ${MBSH} scripts/restore-defaultconf.sh $(RESTORE_PATTERNS) 153 $ (CONFIG)/conf -o $(CONFIG_CONFIG_IN)154 ${ POSTCONFIG}140 .NOTPARALLEL: _mconfig 141 _mconfig: ${CONFIG}/conf _mconfig2 _config 142 _mconfig2: ${CONFIG}/conf 143 ${CONFIG}/conf -m ${RCONFIG} 144 ${MBSH} scripts/restore-defaultconf.sh ${RESTORE_PATTERNS} 155 145 156 snapshotconfig: $(CONFIG)/conf 157 $(CONFIG)/conf -m Config.in.snapshot 158 ${MBSH} scripts/restore-defaultconf.sh $(RESTORE_PATTERNS) 159 $(CONFIG)/conf -o $(CONFIG_CONFIG_IN) 160 ${POSTCONFIG} 146 allmodconfig: 147 ${MAKE} RCONFIG='${CONFIG_CONFIG_IN}' W=-o _mconfig _config 161 148 162 149 tools/install-lbin:


