aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2023-04-20 01:59:53 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2023-04-20 01:59:53 +0000
commit061e8e6ba60e10e7d25e45e63d44a54186ed845e (patch)
tree4ad7469051e537395323d73aef6da04710472d31 /targets
parent64a67b72660d6f6b38e10ec66f2ce7474824b109 (diff)
downloadsrc-061e8e6ba60e10e7d25e45e63d44a54186ed845e.tar.gz
src-061e8e6ba60e10e7d25e45e63d44a54186ed845e.zip
Makefile.xtras: fix show-valid-targets
Use ALL_MACHINE_LIST and leverage .MAKE.DEPENDFILE_PREFERENCE
Diffstat (limited to 'targets')
-rw-r--r--targets/Makefile.xtras11
1 files changed, 5 insertions, 6 deletions
diff --git a/targets/Makefile.xtras b/targets/Makefile.xtras
index 124bddc9b01c..6e328cd3e7cd 100644
--- a/targets/Makefile.xtras
+++ b/targets/Makefile.xtras
@@ -34,21 +34,20 @@ OTHER_TARGETS = \
destroy-stage \
BUILD_TARGETS_${MACHINE:tu} != cd ${_here} && \
- find . \( -name Makefile.depend -o -name ${.MAKE.DEPENDFILE:T} \) | \
+ find . \( ${${.MAKE.DEPENDFILE:T} ${.MAKE.DEPENDFILE_PREFIX}:L:O:u:@m@-name $m -o@:tW:S,-o$,,} \) | \
sed 's,/Makefile.*,,;s,^./,,' | sort -u
-.for _machine in ${all_machine_list}
+.for _machine in ${ALL_MACHINE_LIST}
_targets_${_machine} != cd ${_here} && \
- find . \( -name Makefile.depend.${_machine} -o \
- -name ${.MAKE.DEPENDFILE:T}.${_machine} \) | \
+ find . \( ${.MAKE.DEPENDFILE_PREFERENCE:T:M*${MACHINE}*:S,${MACHINE},${_machine},g:O:u:@m@-name $m -o@:tW:S,-o$,,} \) | \
sed 's,/Makefile.*,,;s,^./,,' | sort -u
BUILD_TARGETS_${_machine:tu} += ${_targets_${_machine}}
.endfor
show-valid-targets:
-.for _machine in ${all_machine_list:O}
+.for _machine in ${ALL_MACHINE_LIST:O}
.if !empty(BUILD_TARGETS_${_machine:tu})
- @echo "Build targets for ${_machine} (leave out the ${target_dirs:S,${_here:T},,:S,^/,,:S,$,/,}):"
+ @echo "Build targets for ${_machine} (leave out the ${DIRDEPS_TARGETS_DIRS:S,${_here:T},,:S,^/,,:S,$,/,}):"
@echo -e "${BUILD_TARGETS_${_machine:tu}:O:ts\n}" | sed -e 's,^, ,'
@echo
.endif