mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
8 lines
180 B
Makefile
8 lines
180 B
Makefile
|
-include ../tools.mk
|
||
|
|
||
|
all:
|
||
|
$(CC) -std=c99 test.c -c -o $(TMPDIR)/test.o
|
||
|
$(AR) rcs $(TMPDIR)/libtest.a $(TMPDIR)/test.o
|
||
|
$(RUSTC) test.rs -L $(TMPDIR)
|
||
|
$(call RUN,test) || exit 1
|