diff options
author | bz <bz@FreeBSD.org> | 2011-01-25 08:13:31 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2011-01-25 08:13:31 +0000 |
commit | ab3c67159918d2800cfde8043251533028ab1e5a (patch) | |
tree | 05b052c8495e25802df154c289beffd84ea8e8ac /Makefile | |
parent | 61ef7f1939918bad9ef3e0486fa572fa715ae4a6 (diff) | |
download | FreeBSD-src-ab3c67159918d2800cfde8043251533028ab1e5a.zip FreeBSD-src-ab3c67159918d2800cfde8043251533028ab1e5a.tar.gz |
Back out r217734. [1]
Properly document what `make targets` is supposed to list to avoid
further confusion given the place the target sits. Should have happened
with r217125.
Requested by: imp [1]
Reviewed by: rwatson
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -28,7 +28,8 @@ # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. -# targets - Print a list of supported TARGET/TARGET_ARCH pairs. +# targets - Print a list of supported TARGET/TARGET_ARCH pairs +# for world and kernel targets. # # This makefile is simple by design. The FreeBSD make automatically reads # the /usr/share/mk/sys.mk unless the -m argument is specified on the @@ -297,7 +298,7 @@ TARGET_ARCHES_${target}?= ${target} .endfor targets: - @echo "Supported TARGETS/TARGET_ARCH pairs" + @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" .for target in ${TARGETS} .for target_arch in ${TARGET_ARCHES_${target}} @echo " ${target}/${target_arch}" |