2022-08-23 00:00:00 +00:00
|
|
|
include ../tools.mk
|
2014-04-15 07:35:17 -07:00
|
|
|
|
|
|
|
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 | \
|
2017-11-23 23:19:50 +08:00
|
|
|
$(CGREP) "error writing dependencies"
|
2014-04-15 07:35:17 -07:00
|
|
|
# Make sure the filename shows up
|
2017-11-23 23:19:50 +08:00
|
|
|
$(BARE_RUSTC) foo.rs --emit dep-info --out-dir foo/bar/baz 2>&1 | $(CGREP) "baz"
|