rust/src/test/run-make-fulldeps/dep-info/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
669 B
Makefile
Raw Normal View History

2013-12-11 14:08:23 -06:00
-include ../tools.mk
# ignore-windows
# ignore-freebsd
# FIXME: on windows `rustc --dep-info` produces Makefile dependency with
2014-04-27 02:52:36 -05:00
# windows native paths (e.g. `c:\path\to\libfoo.a`)
# but msys make seems to fail to recognize such paths, so test fails.
2013-12-11 14:08:23 -06:00
all:
cp *.rs $(TMPDIR)
$(RUSTC) --emit dep-info,link --crate-type=lib $(TMPDIR)/lib.rs
2014-04-03 15:12:19 -05:00
sleep 2
touch $(TMPDIR)/foo.rs
2013-12-11 14:08:23 -06:00
-rm -f $(TMPDIR)/done
$(MAKE) -drf Makefile.foo
2014-04-03 15:12:19 -05:00
sleep 2
2013-12-11 14:08:23 -06:00
rm $(TMPDIR)/done
pwd
$(MAKE) -drf Makefile.foo
2013-12-11 14:08:23 -06:00
rm $(TMPDIR)/done && exit 1 || exit 0
# When a source file is deleted `make` should still work
rm $(TMPDIR)/bar.rs
cp $(TMPDIR)/lib2.rs $(TMPDIR)/lib.rs
$(MAKE) -drf Makefile.foo