-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathMakefile
50 lines (41 loc) · 1.5 KB
/
Makefile
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
46
47
48
49
50
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?= -D language='en' -A GAID='xxx' -A VERSION='refs/heads/master'
TX ?= tx
SPHINXBUILD ?= sphinx-build
SPHINXINTL ?= sphinx-intl
SPHINXAUTOBUILD ?= sphinx-autobuild
SOURCEDIR = .
BUILDDIR = _build
LOC ?=
PROJECT ?=
# Put it first so that "make" without argument is like "make help".
help:
@echo " serve to run development server with auto-reload"
@echo " update to prepate .pot files for PROJECT"
@echo " push to push .pot files to Transifex"
@echo " pull to pull .po files from Transifex for LOC or all"
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
serve:
@$(SPHINXAUTOBUILD) "$(SOURCEDIR)" "$(BUILDDIR)/html" $(SPHINXOPTS)
update:
@$(SPHINXBUILD) -M gettext "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS)
@$(SPHINXINTL) update-txconfig-resources --pot-dir "$(BUILDDIR)/gettext" --transifex-project-name "$(PROJECT)"
push:
@$(TX) push -s
pull:
ifeq ($(LOC),)
@$(TX) pull
else
@$(TX) pull -l "$(LOC)"
endif
clean:
rm -r _build
rm -r reference/api
.PHONY: help serve update push pull clean Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)