summary refs log tree commit diff
path: root/src/test/run-make/used/Makefile
blob: 47edcbb5d0a1e2ed643e472d44c33fd549bda15b (plain)
1
2
3
4
5
6
7
8
9
10
11
-include ../tools.mk

ifdef IS_WINDOWS
# Do nothing on MSVC.
all:
	exit 0
else
all:
	$(RUSTC) -C opt-level=3 --emit=obj used.rs
	nm $(TMPDIR)/used.o | $(CGREP) FOO
endif