-
Notifications
You must be signed in to change notification settings - Fork 389
/
Makefile
90 lines (75 loc) · 3.09 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
SHELL := /bin/bash
DOCKER ?= $(shell command -v docker || command -v podman || docker)
ASCIIDOC := asciidoctor/docker-asciidoctor:latest
DIRMOUNTS := /documents
DIRCONTENTS := chapters
DIRSCRIPTS := scripts
DIRBUILDS := output
DIRINCLUDES := includes
DIRWORK := $(shell pwd -P)
.PHONY: all clean install lint format pull assets rules html pdf epub force
.PHONY: check check-rules check-rules-duplicates check-rules-incorrects
.PHONY: next-rule-id watch
all: clean html rules
clean:
rm -rf $(DIRBUILDS) $(DIRINCLUDES);
install: $(NVM_BIN)/markdownlint
$(NVM_BIN)/markdownlint:
npm install --global markdownlint-cli;
lint: $(NVM_BIN)/markdownlint
markdownlint --config .markdownlint.yaml chapters/*.adoc;
format: $(NVM_BIN)/markdownlint
markdownlint --config .markdownlint.yaml --fix chapters/*.adoc;
pull:
$(DOCKER) pull $(ASCIIDOC);
check: check-rules
check-rules: check-rules-duplicates check-rules-incorrects
check-rules-duplicates:
@DUPLICATED="$$(grep -roE "\[#[0-9]+]" $(DIRCONTENTS) | sort |uniq -d)"; \
if [ -n "$${DUPLICATED}" ]; then \
echo "Duplicated Rule IDs: $$(echo "$${DUPLICATED}" | tr -d '\n')"; \
echo "Please make sure the Rule ID anchors are unique"; \
exit 1; \
fi;
check-rules-incorrects:
@INCORRECT="$$(grep -rnE "(\[[0-9]{1,4}\]|\[ +#?[0-9]+ +\])" $(DIRCONTENTS))"; \
if [ -n "$${INCORRECT}" ]; then \
echo -e "Incorrect Rule IDs:\n $${INCORRECT}"; \
echo "Please make sure that the Rule ID anchors conform to '\[#[0-9]+\]'"; \
exit 1; \
fi;
next-rule-id:
@IFS=$$'\r\n' GLOBIGNORE='*' command eval \
"RULE_IDS=($$(grep -rh "^.*\[#[0-9]\{1,5\}.*$$" $(DIRCONTENTS) | sort -r))"; \
echo $$(($$(echo $${RULE_IDS[0]} | tr -d '\[' | tr -d '\]' | tr -d '#') + 1));
assets:
mkdir -p $(DIRBUILDS);
cp -r assets $(DIRBUILDS)/;
cp -r models $(DIRBUILDS)/;
cp -r models/{problem-1.0.{0,1},money-1.0.0}.yaml $(DIRBUILDS);
rules: check-rules
$(DIRSCRIPTS)/generate-rules-json.sh | \
jq -s '{rules: . | sort}' | tee $(DIRBUILDS)/rules >$(DIRBUILDS)/rules.json;
$(DIRINCLUDES): models/headers-1.0.0.yaml $(DIRSCRIPTS)/generate-includes.sh
mkdir -p $(DIRINCLUDES); $(DIRSCRIPTS)/generate-includes.sh "$(DIRINCLUDES)";
html: $(DIRINCLUDES) check assets pull
$(DOCKER) run --interactive --user=$$(id -u):$$(id -g) \
--volume=$(DIRWORK):$(DIRMOUNTS)/ \
$(ASCIIDOC) asciidoctor -D $(DIRMOUNTS)/$(DIRBUILDS) index.adoc;
watch:
watchexec --exts adoc,css --ignore output -r make html
# Not used any longer.
pdf: $(DIRINCLUDES) check pull
$(DOCKER) run --interactive --user=$$(id -u):$$(id -g) \
--volume=$(DIRWORK):$(DIRMOUNTS)/ \
$(ASCIIDOC) asciidoctor-pdf -v \
-a pdf-fontsdir=$(DIRMOUNTS)/resources/fonts \
-a pdf-theme=$(DIRMOUNTS)/resources/themes/pdf-theme.yml \
-D $(DIRMOUNTS)/$(DIRBUILDS) index.adoc;
mv -f $(DIRBUILDS)/index.pdf $(DIRBUILDS)/zalando-guidelines.pdf;
# Not used any longer.
epub: $(DIRINCLUDES) check pull
$(DOCKER) run --interactive --user=$$(id -u):$$(id -g) \
--volume=$(DIRWORK):$(DIRMOUNTS)/ \
$(ASCIIDOC) asciidoctor-epub3 -D $(DIRMOUNTS)/$(DIRBUILDS) index.adoc;
mv -f $(DIRBUILDS)/index.epub $(DIRBUILDS)/zalando-guidelines.epub;