summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/print-target-list/Makefile
blob: f23c40d4281e32c4c9875dbe31ece959934917e2 (plain)
1
2
3
4
5
6
7
8
include ../tools.mk

# Checks that all the targets returned by `rustc --print target-list` are valid
# target specifications
all:
	for target in $(shell $(BARE_RUSTC) --print target-list); do \
		$(BARE_RUSTC) --target $$target --print sysroot; \
	done