2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2015-02-09 22:42:31 -06:00
|
|
|
|
|
|
|
all: foo.rs
|
|
|
|
$(RUSTC) --cfg 'feature="bar"' --crate-type lib foo.rs
|
2017-10-10 15:06:22 -05:00
|
|
|
$(RUSTDOC) --test --cfg 'feature="bar"' \
|
2015-02-10 13:05:20 -06:00
|
|
|
-L $(TMPDIR) foo.rs |\
|
2018-12-25 09:56:47 -06:00
|
|
|
$(CGREP) 'foo.rs - foo (line 1) ... ok'
|