Deleted Added
full compact
Makefile (255484) Makefile (255713)
1#
1#
2# $FreeBSD: head/Makefile 255484 2013-09-12 00:23:09Z emaste $
2# $FreeBSD: head/Makefile 255713 2013-09-19 20:09:56Z emaste $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

336# the system bsdmake-like utility to be overridden.
337#
338MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \
339 DESTDIR= \
340 INSTALL="sh ${.CURDIR}/tools/install.sh"
341MMAKE= ${MMAKEENV} ${MAKE} \
342 -D_UPGRADING \
343 -DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

336# the system bsdmake-like utility to be overridden.
337#
338MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \
339 DESTDIR= \
340 INSTALL="sh ${.CURDIR}/tools/install.sh"
341MMAKE= ${MMAKEENV} ${MAKE} \
342 -D_UPGRADING \
343 -DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
344 -DNO_CPU_CFLAGS -DNO_WERROR
344 -DNO_CPU_CFLAGS -DNO_WERROR DESTDIR= PROGNAME=${MYMAKE:T}
345
346make bmake: .PHONY
347 @echo
348 @echo "--------------------------------------------------------------"
349 @echo ">>> Building an up-to-date make(1)"
350 @echo "--------------------------------------------------------------"
351 ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
345
346make bmake: .PHONY
347 @echo
348 @echo "--------------------------------------------------------------"
349 @echo ">>> Building an up-to-date make(1)"
350 @echo "--------------------------------------------------------------"
351 ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
352 ${MMAKE} obj DESTDIR= && \
353 ${MMAKE} depend DESTDIR= && \
354 ${MMAKE} all DESTDIR= PROGNAME=${MYMAKE:T} && \
355 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T}
352 ${MMAKE} obj && \
353 ${MMAKE} depend && \
354 ${MMAKE} all && \
355 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
356
357tinderbox toolchains kernel-toolchains: upgrade_checks
358
359tinderbox:
360 @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe
361
362toolchains:
363 @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe

--- 145 unchanged lines hidden ---
356
357tinderbox toolchains kernel-toolchains: upgrade_checks
358
359tinderbox:
360 @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe
361
362toolchains:
363 @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe

--- 145 unchanged lines hidden ---