Move almost all run-make-fulldeps to run-make

They pass fine.
This commit is contained in:
Joshua Nelson
2023-03-30 07:34:55 -05:00
parent f2d9a3d077
commit 433da1fc04
696 changed files with 2 additions and 2 deletions
@@ -0,0 +1,6 @@
include ../tools.mk
all:
$(AR) crus $(TMPDIR)/libfoo.a foo.rs
$(AR) d $(TMPDIR)/libfoo.a foo.rs
$(RUSTC) foo.rs
@@ -0,0 +1,6 @@
#![crate_type = "staticlib"]
#[link(name = "foo", kind = "static")]
extern "C" {}
fn main() {}