-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
238 lines (193 loc) · 6.02 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
MAKEFLAGS += --warn-undefined-variables
SHELL := /bin/bash
.DEFAULT_GOAL := help
.ONESHELL:
# Destiné à la personnalisation de certaines variables.
# Voir le modèle Makefile.ini.template.
-include Makefile.ini
# Pour colorer certains messages
red := $(shell tput setaf 1)
green := $(shell tput setaf 2)
reset := $(shell tput sgr0)
empty :=
space := $(empty) $(empty)
comma := ,
# Variable dont l'évaluation produit un retour à la ligne
define newline
$(empty)
$(empty)
endef
# $(call uppercase,texte)
uppercase = $(shell echo $1 | tr '[:lower:]' '[:upper:]')
# $(call intercalate,list,separator)
intercalate = $(subst $(space),$2,$1)
# $(call init,list)
init = $(wordlist 1,$(shell echo $(words $1) - 1 | bc),$1)
# $(call join-with-conj,list,conjunction)
define join-with-conj
$(call intercalate,$(call init,$1),$(comma)$(space))$(space)$2$(space)$(lastword $1)
endef
# Le visionneur de fichier texte
ifeq ($(PAGER),less)
ifeq ($(origin PAGER),environment)
PAGER += -F
endif
else ifeq ($(shell which less),)
PAGER ?= cat
else
PAGER ?= less -F
endif
# Le visionneur de PDF
kernel := $(shell uname)
ifeq ($(kernel),Linux)
PDF_VIEWER ?= xdg-open
else ifeq ($(kernel),Darwin)
PDF_VIEWER ?= open
endif
# Les PDF générés sont de la forme $(book)-$(FORMAT)-$(REVISION).pdf
book := ETG-solutions
# Dossier où se passe la compilation
BUILD_DIR ?= build
# Dossier où vont les pdfs
PDF_DIR ?= pdfs
# Fichiers maîtres
MAIN_FILES := $(wildcard ETG-solutions-*.tex)
# Les versions disponibles
VERSIONS_ALL := $(sort $(MAIN_FILES:$(book)-%.tex=%))
# Options de pdflatex
pdflatex_opts := -file-line-error
# Options de latexmk
latexmk_opts := -outdir=$(BUILD_DIR) -recorder -pdf \
-pdflatex="pdflatex $(pdflatex_opts) %O %S" \
-e '$$pdf_previewer="$(PDF_VIEWER) %O %S";'
# La variable VERSION_DEV désigne la version préférée pour développer. Elle est
# destinée au fichier Makefile.ini. Sur la ligne de commande, on peut utiliser
# la variable VERSION.
VERSION_DEV ?= $(word 1,$(VERSIONS_ALL))
VERSION ?= $(VERSION_DEV)
VERSION_DEV := $(VERSION)
# Liste des versions à compiler.
# VERSIONS sur la ligne de commande, l'alias VERSIONS_PDF dans le ficher
# Makefile.ini.
VERSIONS_PDF ?= $(VERSIONS_ALL)
VERSIONS ?= $(VERSIONS_PDF)
VERSIONS_PDF := $(VERSIONS)
# $(call validate-version,list_of_versions)
define validate-version
$(foreach v,$1,\
$(if $(filter $v,$(VERSIONS_ALL)),,
$(error $(red)Version $v inconnue. \
Les versions disponibles sont \
$(call join-with-conj,$(VERSIONS_ALL),et)$(reset))))
endef
define validate-pdf-viewer
$(if $(shell which $(PDF_VIEWER)),,
$(error $(red)Visionneur de PDF non disponible$(reset)))
endef
ifeq ($(MAKECMDGOALS),pdfs)
$(call validate-version,$(VERSIONS_PDF))
else ifeq ($(MAKECMDGOALS),dev)
$(call validate-version,$(VERSION_DEV))
$(validate-pdf-viewer)
else ifeq ($(MAKECMDGOALS),view)
$(call validate-version,$(VERSIONS_PDF))
$(validate-pdf-viewer)
endif
# Nom du fichier maître en fonction de la version
# $(call source-main,version)
source-main = $(book)-$1.tex
# Révision
GIT_DESCRIBE := $(shell git describe --always --long --dirty)
GIT_DATE := $(shell git log -1 --format=%ad --date=short)
REVISION := $(subst -,,$(GIT_DATE))-$(GIT_DESCRIBE)
# Nom du fichier de développement en fonction de la version
# $(call target-dev,version)
target-dev = $(BUILD_DIR)/$(book)-$1.pdf
# Nom de l'ébauche en fonction de la version
# $(call target-pdf,version))
target-pdf = $(PDF_DIR)/$(book)-$1-$(REVISION).pdf
# Les PDF de développement
TARGET_DEV := $(call target-dev,$(VERSION_DEV))
TARGETS_DEV_ALL := $(VERSIONS_ALL:%=$(call target-dev,%))
# Les PDF générés par la cble pdfs
TARGETS_PDF := $(VERSIONS_PDF:%=$(call target-pdf,%))
TARGETS_PDF_ALL := $(VERSIONS_ALL:%=$(call target-pdf,%))
# Largeur de la première colonne de la page d'aide
help_width := 18
define make_help_message
define help_message
USAGE
$(shell \
awk 'BEGIN { FS="##\\s" } \
/^##\smake\s[a-z\-]+(\s(\[[A-Z\-]+=[a-z\-]+\])*)?/ \
{ printf " %s\\n",$$2 }' $(MAKEFILE_LIST)) \
CIBLES
$(shell \
awk 'BEGIN { FS="##\\s|\\s:\\s" } /^##\s[a-z\-]+\s:\s/ \
{ printf " %-$(help_width)s %s\\n", $$2, $$3 }' \
$(MAKEFILE_LIST)) \
VERSIONS
$(shell \
$(foreach v,$(VERSIONS_ALL), \
awk 'BEGIN { FS="%"; } /^%/ \
{ printf " %-$(help_width)s%s\\n", "$v", $$2 }' \
$(call source-main,$v);)) \
VARIABLES PRINCIPALES
$(shell \
awk 'BEGIN { FS="#\\s!?|\\s:\\s" } /^#\s![A-Z_]+\s:\s/ \
{ printf " %-$(help_width)s %s\\n", $$2, $$3 }' \
Makefile.ini.template)
endef
export help_message
endef
$(eval $(call make_help_message))
.SILENT:
.PHONY: FORCE_MAKE
FORCE_MAKE:
.PHONY: revision.tex
.INTERMEDIATE: revision.tex
revision.tex:
$(file > $@,\newcommand{\gitDescribe}{$(GIT_DESCRIBE)})
$(file >> $@,\newcommand{\gitDate}{$(GIT_DATE)})
.PRECIOUS: $(TARGET_DEV)
$(TARGETS_DEV_ALL): $(call target-dev,%): $(call source-main,%) revision.tex
latexmk $(latexmk_opts) $<
$(TARGETS_PDF_ALL): $(call target-pdf,%): $(call target-dev,%) FORCE_MAKE
mkdir -p $(@D)
cp -uv $< $@
## pdfs : Compile une version du livre
## make pdfs [VERSIONS="$(VERSIONS_PDF)"]
.PHONY: pdfs
pdfs: latexmk_opts += -silent
pdfs: $(TARGETS_PDF)
ifeq ($(words $^),1)
echo -e "$(green)Le fichier suivant a été créé avec succès :"
else
echo -e "$(green)Les fichiers suivants ont été créés avec succès :"
endif
$(foreach f,$^,(echo -e " - $f");)
printf "$(reset)"
## dev : Compile pour éditer
## make dev [VERSION=$(VERSION_DEV)] [PDF_VIEWER=$(PDF_VIEWER)]
.PHONY: dev
dev: latexmk_opts += -pvc
dev: $(TARGET_DEV)
## view : all + ouvre les PDF dans le visionneur
## make view [PDF_VIEWER=$(PDF_VIEWER)]
.PHONY: view
view: pdfs
$(foreach f,$(TARGETS_PDF),($(PDF_VIEWER) $f &);)
## clean : Supprime le dossier $(BUILD_DIR)/
## make clean | cleanall
.PHONY: clean
clean:
rm -frv $(BUILD_DIR)
## cleanall : clean + supprime le dossier $(PDF_DIR)/
.PHONY: cleanall
cleanall: clean
rm -frv $(PDF_DIR)
## help : Affiche l'aide
## make help [PAGER=$(PAGER)]
.PHONY: help
help:
(printf "$$help_message") | $(PAGER)