summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/return-non-c-like-enum/Makefile
blob: 5b5d620efe655f3e31f80d150beaabbeb6facd79 (plain)
1
2
3
4
5
6
7
-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)