From 8fb37cc40e977977b82e42460eccbf4edffb87a3 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Mon, 4 Aug 2014 21:02:07 +0100 Subject: [PATCH] Fix Makefile target for rustdoc. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index b7b3f38..715340d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,7 +21,7 @@ geom-test: src/lib.rs $(RUST_SRC) .PHONY: doc doc: $(RUSTDOC_TARGET)/geom/index.html -$(RUSTDOC_TARGET)/geom/index.html: lib.rs $(RUST_SRC) +$(RUSTDOC_TARGET)/geom/index.html: src/lib.rs $(RUST_SRC) $(RUSTDOC) $(RUSTDOC_FLAGS) $< -o $(RUSTDOC_TARGET) .PHONY: check