Deleted Added
full compact
Makefile (117806) Makefile (118531)
1#
1#
2# $FreeBSD: head/Makefile 117806 2003-07-20 12:38:29Z ru $
2# $FreeBSD: head/Makefile 118531 2003-08-06 11:06:38Z ru $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# buildworld - Rebuild *everything*, including glue to help do
9# upgrades.
10# installworld - Install everything built by "buildworld".

--- 89 unchanged lines hidden (view full) ---

100#
101# world
102#
103# Attempt to rebuild and reinstall *everything*, with reasonable chance of
104# success, regardless of how old your existing system is.
105#
106world: upgrade_checks
107 @echo "--------------------------------------------------------------"
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# buildworld - Rebuild *everything*, including glue to help do
9# upgrades.
10# installworld - Install everything built by "buildworld".

--- 89 unchanged lines hidden (view full) ---

100#
101# world
102#
103# Attempt to rebuild and reinstall *everything*, with reasonable chance of
104# success, regardless of how old your existing system is.
105#
106world: upgrade_checks
107 @echo "--------------------------------------------------------------"
108 @echo ">>> elf make world started on ${STARTTIME}"
108 @echo ">>> make world started on ${STARTTIME}"
109 @echo "--------------------------------------------------------------"
110.if target(pre-world)
111 @echo
112 @echo "--------------------------------------------------------------"
113 @echo ">>> Making 'pre-world' target"
114 @echo "--------------------------------------------------------------"
115 @cd ${.CURDIR}; ${_MAKE} pre-world
116.endif
117 @cd ${.CURDIR}; ${_MAKE} buildworld
118 @cd ${.CURDIR}; ${_MAKE} -B installworld
119.if target(post-world)
120 @echo
121 @echo "--------------------------------------------------------------"
122 @echo ">>> Making 'post-world' target"
123 @echo "--------------------------------------------------------------"
124 @cd ${.CURDIR}; ${_MAKE} post-world
125.endif
126 @echo
127 @echo "--------------------------------------------------------------"
109 @echo "--------------------------------------------------------------"
110.if target(pre-world)
111 @echo
112 @echo "--------------------------------------------------------------"
113 @echo ">>> Making 'pre-world' target"
114 @echo "--------------------------------------------------------------"
115 @cd ${.CURDIR}; ${_MAKE} pre-world
116.endif
117 @cd ${.CURDIR}; ${_MAKE} buildworld
118 @cd ${.CURDIR}; ${_MAKE} -B installworld
119.if target(post-world)
120 @echo
121 @echo "--------------------------------------------------------------"
122 @echo ">>> Making 'post-world' target"
123 @echo "--------------------------------------------------------------"
124 @cd ${.CURDIR}; ${_MAKE} post-world
125.endif
126 @echo
127 @echo "--------------------------------------------------------------"
128 @printf ">>> elf make world completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
128 @echo ">>> make world completed on `LC_ALL=C date`"
129 @echo " (started ${STARTTIME})"
129 @echo "--------------------------------------------------------------"
130
131#
132# kernel
133#
134# Short hand for `make buildkernel installkernel'
135#
136kernel: buildkernel installkernel

--- 56 unchanged lines hidden (view full) ---

193 -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
194 > ${.CURDIR}/_.${mach}.makeLINT 2>&1
195.endif
196 cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach}
197 @echo ">> ${mach} completed on `LC_ALL=C date`"
198.endfor
199.endfor
200 @echo "--------------------------------------------------------------"
130 @echo "--------------------------------------------------------------"
131
132#
133# kernel
134#
135# Short hand for `make buildkernel installkernel'
136#
137kernel: buildkernel installkernel

--- 56 unchanged lines hidden (view full) ---

194 -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
195 > ${.CURDIR}/_.${mach}.makeLINT 2>&1
196.endif
197 cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach}
198 @echo ">> ${mach} completed on `LC_ALL=C date`"
199.endfor
200.endfor
201 @echo "--------------------------------------------------------------"
201 @printf ">>> make universe completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
202 @echo ">>> make universe completed on `LC_ALL=C date`"
203 @echo " (started ${STARTTIME})"
202 @echo "--------------------------------------------------------------"
203
204KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
205 find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES
206
207buildkernels:
208.for kernel in ${KERNCONFS}
209 -cd ${.CURDIR} && ${MAKE} buildkernel \
210 KERNCONF=${kernel} \
211 __MAKE_CONF=/dev/null \
212 > _.${TARGET}.${kernel} 2>&1
213.endfor
204 @echo "--------------------------------------------------------------"
205
206KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
207 find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES
208
209buildkernels:
210.for kernel in ${KERNCONFS}
211 -cd ${.CURDIR} && ${MAKE} buildkernel \
212 KERNCONF=${kernel} \
213 __MAKE_CONF=/dev/null \
214 > _.${TARGET}.${kernel} 2>&1
215.endfor