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

35 lines
743 B
Makefile
Raw Normal View History

2013-12-11 14:08:23 -06:00
-include ../tools.mk
2014-04-27 02:52:36 -05:00
# FIXME: ignore freebsd/windows
# on windows `rustc --dep-info` produces Makefile dependency with
# windows native paths (e.g. `c:\path\to\libfoo.a`)
# but msys make seems to fail to recognize such paths, so test fails.
2014-04-03 15:12:19 -05:00
ifneq ($(shell uname),FreeBSD)
2014-04-27 02:52:36 -05:00
ifndef IS_WINDOWS
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
2014-04-03 15:12:19 -05:00
else
all:
endif
2014-04-27 02:52:36 -05:00
else
all:
endif