2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2021-10-02 11:23:18 -05:00
|
|
|
|
|
|
|
# ignore-cross-compile
|
|
|
|
|
|
|
|
# Just verify that we successfully run and produce dep graphs when requested.
|
|
|
|
|
|
|
|
all:
|
|
|
|
RUST_DEP_GRAPH=$(TMPDIR)/dep-graph $(RUSTC) \
|
|
|
|
-Cincremental=$(TMPDIR)/incr \
|
|
|
|
-Zquery-dep-graph -Zdump-dep-graph foo.rs
|
|
|
|
test -f $(TMPDIR)/dep-graph.txt
|
|
|
|
test -f $(TMPDIR)/dep-graph.dot
|