forked from clearlinux/clear-linux-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (31 loc) · 638 Bytes
/
Makefile
File metadata and controls
45 lines (31 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Makefile for Sphinx documentation
SHELL := /bin/bash
PY_VERSION ?= 3.6
all:
$(MAKE) -C source html
htmlall:
$(MAKE) -C source htmlall
htmlzh:
$(MAKE) -C source htmlzh
htmlde:
$(MAKE) -C source htmlde
html:
$(MAKE) -C source html
linkcheck:
$(MAKE) -C source linkcheck
py:
$(MAKE) -C source py
man:
$(MAKE) -C source man
clean-man:
$(MAKE) -C source clean-man
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " html to make standalone HTML files"
clean:
$(MAKE) -C source clean
rm -rf venv
venv:
virtualenv venv;\
source venv/bin/activate; \
pip3 install -r requirements.txt;