blob: 0420a389168f1a51b8a46f2bacb8f4a98cf71f0e (
plain)
1
2
3
4
5
6
7
8
|
-include ../../run-make-fulldeps/tools.mk
# FIXME(eddyb) provide `HOST_RUSTC` and `TARGET_RUSTC`
# instead of hardcoding them everywhere they're needed.
all:
$(BARE_RUSTC) foo.rs --out-dir $(TMPDIR)
$(RUSTC) bar.rs --target $(TARGET) --emit dep-info
$(CGREP) -v "proc-macro source" < $(TMPDIR)/bar.d
|