aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarian Balakowicz2006-09-01 12:49:50 -0500
committerMarian Balakowicz2006-09-01 12:49:50 -0500
commitf93286397ed2a7084efb0362a43ee09f11702349 (patch)
tree11e0c11781ba0b867831eff47a4178a464cf00b3 /MAKEALL
parent24d3d3754634532ae262075484e7c1d00d447152 (diff)
downloadu-boot-f93286397ed2a7084efb0362a43ee09f11702349.tar.gz
u-boot-f93286397ed2a7084efb0362a43ee09f11702349.tar.xz
u-boot-f93286397ed2a7084efb0362a43ee09f11702349.zip
Add support for a saving build objects in a separate directory.
Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
Diffstat (limited to 'MAKEALL')
-rwxr-xr-xMAKEALL20
1 files changed, 17 insertions, 3 deletions
diff --git a/MAKEALL b/MAKEALL
index 720ab03bd3..d2f86d3ac8 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -8,7 +8,17 @@ else
8 MAKE=make 8 MAKE=make
9fi 9fi
10 10
11[ -d LOG ] || mkdir LOG || exit 1 11if [ "${MAKEALL_LOGDIR}" ] ; then
12 LOG_DIR=${MAKEALL_LOGDIR}
13else
14 LOG_DIR="LOG"
15fi
16
17if [ ! "${BUILD_DIR}" ] ; then
18 BUILD_DIR="."
19fi
20
21[ -d ${MAKEALL_LOGDIR} ] || mkdir ${MAKEALL_LOGDIR} || exit 1
12 22
13LIST="" 23LIST=""
14 24
@@ -303,8 +313,12 @@ build_target() {
303 313
304 ${MAKE} distclean >/dev/null 314 ${MAKE} distclean >/dev/null
305 ${MAKE} ${target}_config 315 ${MAKE} ${target}_config
306 ${MAKE} ${JOBS} all 2>&1 >LOG/$target.MAKELOG | tee LOG/$target.ERR 316
307 ${CROSS_COMPILE:-ppc_8xx-}size u-boot | tee -a LOG/$target.MAKELOG 317 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
318 | tee ${LOG_DIR}/$target.ERR
319
320 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
321 | tee -a ${LOG_DIR}/$target.MAKELOG
308} 322}
309 323
310#----------------------------------------------------------------------- 324#-----------------------------------------------------------------------