diff options
Diffstat (limited to 'tests/run-make-fulldeps/c-static-rlib/Makefile')
-rw-r--r-- | tests/run-make-fulldeps/c-static-rlib/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run-make-fulldeps/c-static-rlib/Makefile b/tests/run-make-fulldeps/c-static-rlib/Makefile new file mode 100644 index 000000000..11a3cf194 --- /dev/null +++ b/tests/run-make-fulldeps/c-static-rlib/Makefile @@ -0,0 +1,8 @@ +include ../tools.mk + +all: $(call NATIVE_STATICLIB,cfoo) + $(RUSTC) foo.rs + $(RUSTC) bar.rs + $(call REMOVE_RLIBS,foo) + rm $(call NATIVE_STATICLIB,cfoo) + $(call RUN,bar) |