Deleted Added
full compact
2c2
< # $FreeBSD: head/Makefile 111089 2003-02-18 17:35:20Z phk $
---
> # $FreeBSD: head/Makefile 111131 2003-02-19 15:40:19Z ru $
6,7c6,7
< # universe - *Really* build *everything*: Buildworld and
< # all kernels on all architectures.
---
> # universe - *Really* build *everything* (buildworld and
> # all kernels on all architectures).
212c212,219
<
---
> #
> # universe
> #
> # Attempt to rebuild *everything* for all supported architectures,
> # with reasonable chance of success, regardless of how old your
> # existing system is.
> #
> i386_mach= pc98
218,225c225,234
< @printf ">> ${arch} started on `LC_ALL=C date`\n"
< -cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \
< __MAKE_CONF=/dev/null \
< > _.${arch}.buildworld 2>&1
< @printf ">> ${arch} buildworld ended on `LC_ALL=C date`\n"
< .if exists(${.CURDIR}/sys/${arch}/conf/NOTES)
< -cd ${.CURDIR}/sys/${arch}/conf && make LINT \
< > _.${arch}.makeLINT 2>&1
---
> .for mach in ${arch} ${${arch}_mach}
> @echo ">> ${mach} started on `LC_ALL=C date`"
> -cd ${.CURDIR} && ${MAKE} buildworld \
> TARGET_ARCH=${arch} TARGET=${mach} \
> __MAKE_CONF=/dev/null \
> > _.${mach}.buildworld 2>&1
> @echo ">> ${mach} buildworld completed on `LC_ALL=C date`"
> .if exists(${.CURDIR}/sys/${mach}/conf/NOTES)
> -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
> > _.${mach}.makeLINT 2>&1
227,228c236,237
< cd ${.CURDIR} && make buildkernels ARCH=${arch} TARGET_ARCH=${arch} JFLAG="${JFLAG}"
< @printf ">> ${arch} ended on `LC_ALL=C date`\n"
---
> cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach}
> @echo ">> ${mach} completed on `LC_ALL=C date`"
230,241c239
< @printf ">> pc98 started on `LC_ALL=C date`\n"
< -cd ${.CURDIR} && make buildworld TARGET=pc98 TARGET_ARCH=i386 \
< __MAKE_CONF=/dev/null \
< > _.pc98.buildworld 2>&1
< @printf ">> pc98 buildworld ended on `LC_ALL=C date`\n"
< .if exists(${.CURDIR}/sys/pc98/conf/NOTES)
< -cd ${.CURDIR}/sys/pc98/conf && make LINT \
< > _.pc98.makeLINT 2>&1
< .endif
< cd ${.CURDIR} && make buildkernels ARCH=pc98 TARGET_ARCH=i386 \
< JFLAG="${JFLAG}"
< @printf ">> pc98 ended on `LC_ALL=C date`\n"
---
> .endfor
246,247c244,245
< KERNCONFS != echo ${.CURDIR}/sys/${ARCH}/conf/[A-Z]*
< KERNCONF2 = ${KERNCONFS:T:N*[a-z]*:NCVS:NNOTES}
---
> KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
> find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES
250,256c248,252
< .for kernel in ${KERNCONF2}
< .if exists(${.CURDIR}/sys/${ARCH}/conf/${kernel})
< -cd ${.CURDIR} && make ${JFLAG} buildkernel \
< ARCH=${ARCH} TARGET_ARCH=${TARGET_ARCH} KERNCONF=${kernel} \
< __MAKE_CONF=/dev/null \
< > _.${ARCH}.${kernel} 2>&1
< .endif
---
> .for kernel in ${KERNCONFS}
> -cd ${.CURDIR} && ${MAKE} buildkernel \
> KERNCONF=${kernel} \
> __MAKE_CONF=/dev/null \
> > _.${TARGET}.${kernel} 2>&1