8 lines
187 B
Makefile
8 lines
187 B
Makefile
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) --crate-type=staticlib nonclike.rs
|
|
$(CC) test.c $(call STATICLIB,nonclike) $(call OUT_EXE,test) \
|
|
$(EXTRACFLAGS) $(EXTRACXXFLAGS)
|
|
$(call RUN,test)
|