summary refs log tree commit diff
path: root/src/test/run-make/bootstrap-from-c-with-native/Makefile
blob: 7f466573da73087c0b72de342dd54fdadde6cdb4 (plain)
1
2
3
4
5
6
7
8
9
-include ../tools.mk

all:
	$(RUSTC) lib.rs -Z gen-crate-map
	ln -nsf $(call DYLIB,boot-*) $(call DYLIB,boot)
	$(CC) main.c -o $(call RUN,main) -lboot -Wl,-rpath,$(TMPDIR)
	$(call RUN,main)
	rm $(call DYLIB,boot)
	$(call FAIL,main)