summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-hidden-line/Makefile
blob: b08c6625f1705ec67f048971fbac166052699944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-include ../tools.mk

# FIXME ignore windows
ifndef IS_WINDOWS

all:
	$(HOST_RPATH_ENV) $(RUSTDOC) --test foo.rs
	$(HOST_RPATH_ENV) $(RUSTDOC) -w html -o $(TMPDIR)/doc foo.rs
	cp verify.sh $(TMPDIR)
	$(call RUN,verify.sh) $(TMPDIR)

else
all:

endif