2014-04-15 07:35:17 -07:00
|
|
|
-include ../tools.mk
|
|
|
|
|
|
|
|
all:
|
|
|
|
# Let's get a nice error message
|
2015-01-20 10:57:10 -08:00
|
|
|
$(BARE_RUSTC) foo.rs --emit dep-info --out-dir foo/bar/baz 2>&1 | \
|
2014-04-15 07:35:17 -07:00
|
|
|
grep "error writing dependencies"
|
|
|
|
# Make sure the filename shows up
|
2015-01-20 10:57:10 -08:00
|
|
|
$(BARE_RUSTC) foo.rs --emit dep-info --out-dir foo/bar/baz 2>&1 | grep "baz"
|