rust/tests/run-make/return-non-c-like-enum/Makefile
2023-03-30 07:34:55 -05:00

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)