]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/symlinked-rlib/Makefile
Don't default on std crate when manipulating browser history
[rust.git] / src / test / run-make-fulldeps / symlinked-rlib / Makefile
1 -include ../tools.mk
2
3 # ignore windows: `ln` is actually `cp` on msys.
4 ifndef IS_WINDOWS
5
6 all:
7         $(RUSTC) foo.rs --crate-type=rlib -o $(TMPDIR)/foo.xxx
8         ln -nsf $(TMPDIR)/foo.xxx $(TMPDIR)/libfoo.rlib
9         $(RUSTC) bar.rs -L $(TMPDIR)
10
11 else
12 all:
13
14 endif