2019-05-24 14:04:45 -05:00
|
|
|
-include ../tools.mk
|
|
|
|
|
|
|
|
# Test that rustdoc will properly load in a theme file and display it in the theme selector.
|
|
|
|
|
|
|
|
OUTPUT_DIR := "$(TMPDIR)/rustdoc-themes"
|
|
|
|
|
|
|
|
all:
|
|
|
|
cp $(S)/src/librustdoc/html/static/themes/light.css $(TMPDIR)/test.css
|
2019-09-22 22:35:25 +02:00
|
|
|
$(RUSTDOC) -o $(OUTPUT_DIR) foo.rs --theme $(TMPDIR)/test.css
|