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