Lines Matching refs:target

297 .if target(pre-world)
306 .if target(post-world)
407 .for target in ${TARGETS}
408 TARGET_ARCHES_${target}?= ${target}
420 .for target in ${TARGETS}
421 .for target_arch in ${TARGET_ARCHES_${target}}
422 @echo " ${target}/${target_arch}"
442 .for target in ${TARGETS}
443 universe: universe_${target}
444 universe_epilogue: universe_${target}
445 universe_${target}: universe_${target}_prologue
446 universe_${target}_prologue: universe_prologue
447 @echo ">> ${target} started on `LC_ALL=C date`"
449 .for target_arch in ${TARGET_ARCHES_${target}}
450 universe_${target}: universe_${target}_${target_arch}
451 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
452 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
455 TARGET=${target} \
457 > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
458 (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
459 "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
461 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
467 .for target_arch in ${TARGET_ARCHES_${target}}
468 universe_${target}_kernels: universe_${target}_${target_arch}
471 universe_${target}: universe_${target}_kernels
472 universe_${target}_kernels: universe_${target}_prologue .MAKE
473 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
474 @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
475 ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
476 (echo "${target} 'make LINT' failed," \
477 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
479 @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
482 @echo ">> ${target} completed on `LC_ALL=C date`"