-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Makefile
125 lines (94 loc) · 3.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# MakeFile for building all the docs at once.
# Inspired by the Makefile used by bazaar.
# https://bazaar.launchpad.net/~bzr-pqm/bzr/2.3/
PYTHON = python3
ES_HOST =
ES_HOST_V2 =
.PHONY: all clean html latexpdf epub htmlhelp website website-dirs rebuild-index
# Languages that can be built.
LANGS = en es fr ja pt
# pdflatex does not like ja, zh & tr for some reason.
PDF_LANGS = en es fr pt
DEST = website
EPUB_ARGS =
SPHINXOPTS =
# Get path to theme directory to build static assets.
THEME_DIR = $(shell python3 -c 'import os, cakephpsphinx; print(os.path.abspath(os.path.dirname(cakephpsphinx.__file__)))')
#
# The various formats the documentation can be created in.
#
# Loop over the possible languages and call other build targets.
#
html: $(foreach lang, $(LANGS), html-$(lang))
htmlhelp: $(foreach lang, $(LANGS), htmlhelp-$(lang))
epub: $(foreach lang, $(LANGS), epub-$(lang))
latex: $(foreach lang, $(PDF_LANGS), latex-$(lang))
pdf: $(foreach lang, $(PDF_LANGS), pdf-$(lang))
htmlhelp: $(foreach lang, $(LANGS), htmlhelp-$(lang))
server: $(foreach lang, $(LANGS), server-$(lang))
rebuild-index: $(foreach lang, $(LANGS), rebuild-index-$(lang))
# Make the HTML version of the documentation with correctly nested language folders.
html-%:
cd $* && make html SPHINXOPTS="$(SPHINXOPTS)"
make build/html/$*/_static/css/dist.css
make build/html/$*/_static/js/dist.js
htmlhelp-%:
cd $* && make htmlhelp
epub-%:
cd $* && make epub
latex-%:
cd $* && make latex
pdf-%:
cd $* && make latexpdf
server-%:
cd build/html/$* && python3 -m SimpleHTTPServer
epub-check-%: build/epub/$*
java -jar /epubcheck/epubcheck.jar build/epub/$*/CakePHP.epub $(EPUB_ARGS)
website-dirs:
# Make the directory if its not there already.
[ ! -d $(DEST) ] && mkdir $(DEST) || true
# Make the downloads directory
[ ! -d $(DEST)/_downloads ] && mkdir $(DEST)/_downloads || true
# Make downloads for each language
$(foreach lang, $(LANGS), [ ! -d $(DEST)/_downloads/$(lang) ] && mkdir $(DEST)/_downloads/$(lang) || true;)
website: website-dirs html epub pdf
# Move HTML
$(foreach lang, $(LANGS), cp -r build/html/$(lang) $(DEST)/$(lang);)
# Move EPUB files
$(foreach lang, $(LANGS), cp -r build/epub/$(lang)/*.epub $(DEST)/_downloads/$(lang) || true;)
# Move PDF files
$(foreach lang, $(PDF_LANGS), [ -f build/latex/$(lang)/*.pdf ] && cp -r build/latex/$(lang)/*.pdf $(DEST)/_downloads/$(lang) || true;)
clean:
rm -rf build/*
clean-website:
rm -rf $(DEST)/*
build/html/%/_static:
mkdir -p build/html/$*/_static
build/html/%/_static/css: build/html/%/_static
mkdir -p build/html/$*/_static/css
build/html/%/_static/js: build/html/%/_static
mkdir -p build/html/$*/_static/js
CSS_FILES = $(THEME_DIR)/themes/cakephp/static/css/fonts.css \
$(THEME_DIR)/themes/cakephp/static/css/bootstrap.min.css \
$(THEME_DIR)/themes/cakephp/static/css/font-awesome.min.css \
$(THEME_DIR)/themes/cakephp/static/css/style.css \
$(THEME_DIR)/themes/cakephp/static/css/default.css \
$(THEME_DIR)/themes/cakephp/static/css/pygments.css \
$(THEME_DIR)/themes/cakephp/static/css/responsive.css
build/html/%/_static/css/dist.css: build/html/%/_static/css $(CSS_FILES)
# build css dependencies for distribution into '$@'
cat $(CSS_FILES) > $@
JS_FILES = $(THEME_DIR)/themes/cakephp/static/js/vendor.js \
$(THEME_DIR)/themes/cakephp/static/js/app.js \
$(THEME_DIR)/themes/cakephp/static/js/messages.js \
$(THEME_DIR)/themes/cakephp/static/js/common.js \
$(THEME_DIR)/themes/cakephp/static/js/responsive-menus.js \
$(THEME_DIR)/themes/cakephp/static/js/mega-menu.js \
$(THEME_DIR)/themes/cakephp/static/js/header.js \
$(THEME_DIR)/themes/cakephp/static/js/search.js \
$(THEME_DIR)/themes/cakephp/static/js/search.messages.*.js \
$(THEME_DIR)/themes/cakephp/static/js/inline-search.js \
$(THEME_DIR)/themes/cakephp/static/js/standalone-search.js
build/html/%/_static/js/dist.js: build/html/%/_static/js $(JS_FILES)
# build js dependencies for distribution into '$@'
cat $(JS_FILES) > $@