Deleted Added
full compact
Makefile (276281) Makefile (281836)
1#
1#
2# $FreeBSD: stable/10/Makefile 276281 2014-12-27 03:20:34Z ian $
2# $FreeBSD: stable/10/Makefile 281836 2015-04-21 17:02:55Z garga $
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

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

31# delete-old-libs - Delete obsolete libraries.
32# targets - Print a list of supported TARGET/TARGET_ARCH pairs
33# for world and kernel targets.
34# toolchains - Build a toolchain for all world and kernel targets.
35# xdev - xdev-build + xdev-install for the architecture
36# specified with XDEV and XDEV_ARCH.
37# xdev-build - Build cross-development tools.
38# xdev-install - Install cross-development tools.
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

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

31# delete-old-libs - Delete obsolete libraries.
32# targets - Print a list of supported TARGET/TARGET_ARCH pairs
33# for world and kernel targets.
34# toolchains - Build a toolchain for all world and kernel targets.
35# xdev - xdev-build + xdev-install for the architecture
36# specified with XDEV and XDEV_ARCH.
37# xdev-build - Build cross-development tools.
38# xdev-install - Install cross-development tools.
39# native-xtools - Create host binaries that produce target objects
40# for use in qemu user-mode jails.
39#
40# "quick" way to test all kernel builds:
41# _jflag=`sysctl -n hw.ncpu`
42# _jflag=$(($_jflag * 2))
43# [ $_jflag -gt 12 ] && _jflag=12
44# make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
45#
46# This makefile is simple by design. The FreeBSD make automatically reads

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

105 everything hier hierarchy install installcheck installkernel \
106 installkernel.debug packagekernel packageworld \
107 reinstallkernel reinstallkernel.debug \
108 installworld kernel-toolchain libraries lint maninstall \
109 obj objlink regress rerelease showconfig tags toolchain update \
110 _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
111 _build-tools _cross-tools _includes _libraries _depend \
112 build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
41#
42# "quick" way to test all kernel builds:
43# _jflag=`sysctl -n hw.ncpu`
44# _jflag=$(($_jflag * 2))
45# [ $_jflag -gt 12 ] && _jflag=12
46# make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
47#
48# This makefile is simple by design. The FreeBSD make automatically reads

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

107 everything hier hierarchy install installcheck installkernel \
108 installkernel.debug packagekernel packageworld \
109 reinstallkernel reinstallkernel.debug \
110 installworld kernel-toolchain libraries lint maninstall \
111 obj objlink regress rerelease showconfig tags toolchain update \
112 _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
113 _build-tools _cross-tools _includes _libraries _depend \
114 build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
115 native-xtools \
113
114TGTS+= ${SUBDIR_TARGETS}
115
116BITGTS= files includes
117BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
118TGTS+= ${BITGTS}
119
120.ORDER: buildworld installworld

--- 408 unchanged lines hidden ---
116
117TGTS+= ${SUBDIR_TARGETS}
118
119BITGTS= files includes
120BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
121TGTS+= ${BITGTS}
122
123.ORDER: buildworld installworld

--- 408 unchanged lines hidden ---