blob: 8f8e08e992d22406042284cfa44ab41b9ce7386e (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line.
LOCALE ?= fr
PUBHOST ?= club1.fr
PUBDIR ?= /var/www/docs
ifneq "$(LOCALE)" "fr"
override NOTFR = 1
else
override NOTFR =
endif
SPHINXLANG = -D language=$(LOCALE)
SPHINXOPTS += -a
SPHINXBUILD ?= sphinx-build
SPHINXBUILDERS = html dirhtml singlehtml epub latex text man texinfo
SPHINXCMDS = pickle json htmlhelp changes xml pseudoxml linkcheck doctest coverage
SOURCEDIR = .
BUILDDIR = _build
MDFILES = index.md $(shell find . -type f -name '*.md')
LOCALES = en
LOCALEFILES = $(LOCALES:%=locales/%/LC_MESSAGES/package.po)
DIRS = locales
# Put it first so that "make" without argument is like "make help".
help:
$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $O
.PHONY: help clean update-po gettext latexpdf info publish $(SPHINXBUILDERS) $(SPHINXCMDS)
update-po: $(LOCALEFILES)
gettext: locales/package.pot
$(LOCALEFILES): locales/%/LC_MESSAGES/package.po: locales/package.pot
sphinx-intl update -p $(<D) -l $*
@touch $@
locales/package.pot: $(BUILDDIR)/gettext/package.pot | locales
cp $< $@
$(DIRS):
mkdir -p $@
$(BUILDDIR)/gettext/package.pot: $(MDFILES)
$(SPHINXBUILD) -M gettext "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $O
@touch $@
latexpdf: latex
$(MAKE) -C $(BUILDDIR)/latex/$(LOCALE)
info: texinfo
$(MAKE) -C $(BUILDDIR)/texinfo/$(LOCALE)
publish: html
rsync -av --del _build/html/ $(USER)@$(PUBHOST):$(PUBDIR)
# Shinx commands that need locales (builders).
$(SPHINXBUILDERS): $(if $(NOTFR),locales/$(LOCALE)/LC_MESSAGES/package.po)
$(SPHINXBUILD) -b $@ "$(SOURCEDIR)" "$(BUILDDIR)/$@/$(LOCALE)" $(SPHINXLANG) $(SPHINXOPTS) $O
# Other Sphinx commands for autocompletion
$(SPHINXCMDS):
$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $O
clean:
rm -f locales/*/LC_MESSAGES/package.mo
rm -rf $(BUILDDIR)/*
|