From d9388bc209d15f81a74bbb5e6c879617af13ad01 Mon Sep 17 00:00:00 2001
From: aviau <alexandre@alexandreviau.net>
Date: Tue, 3 May 2016 10:05:58 -0400
Subject: [PATCH] Allow for building docs with `make html`

This commit makes use of the virtual env in the `docs` target.
This way, all users have to do to build the documentation is run
`make docs`.

Change-Id: I5c4855d9d0a3fbbfeea53c568f3d9dc6de10ddd5
Tuleap: #636
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a7b83ec8..1b679c45 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 .PHONY: docs
 docs: env
-	make -C docs html
+	env/bin/sphinx-build -b html docs/source docs/build/html
 
 env:
 	virtualenv env
-- 
GitLab