@@ -28,28 +28,24 @@ install the tools into there.
28
28
Using make
29
29
----------
30
30
31
- To get started on UNIX, you can create a virtual environment with the command ::
32
-
33
- make venv
34
-
35
- That will install all the tools necessary to build the documentation. Assuming
36
- the virtual environment was created in the ``venv `` directory (the default;
37
- configurable with the VENVDIR variable), you can run the following command to
38
- build the HTML output files::
31
+ To get started on UNIX, you can create a virtual environment and build
32
+ documentation with the command::
39
33
40
34
make html
41
35
42
- By default, if the virtual environment is not created, the Makefile will
43
- look for instances of sphinxbuild and blurb installed on your process PATH
44
- (configurable with the SPHINXBUILD and BLURB variables) .
36
+ The virtual environment in the `` venv `` directory will contain all the tools
37
+ necessary to build the documentation. You can also configure where the virtual
38
+ environment directory will be with the `` VENVDIR `` variable .
45
39
46
40
On Windows, we try to emulate the Makefile as closely as possible with a
47
41
``make.bat `` file. If you need to specify the Python interpreter to use,
48
- set the PYTHON environment variable instead .
42
+ set the PYTHON environment variable.
49
43
50
44
Available make targets are:
51
45
52
- * "clean", which removes all build files.
46
+ * "clean", which removes all build files and the virtual environment.
47
+
48
+ * "clean-venv", which removes the virtual environment directory.
53
49
54
50
* "venv", which creates a virtual environment with all necessary tools
55
51
installed.
0 commit comments