-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
75 lines (73 loc) · 2.33 KB
/
Makefile
File metadata and controls
75 lines (73 loc) · 2.33 KB
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
all: gut-feelings-first-principles-of-a-software-crafter-markus-tacker.pdf gut-feelings-first-principles-of-a-software-crafter-markus-tacker.epub
gut-feelings-first-principles-of-a-software-crafter-markus-tacker.epub: Makefile book/*.md book/*.txt book/media/* book/*.css
pandoc \
-o $@ \
--css=book/styles.css --standalone \
book/title.txt \
book/cover.md \
book/about.md \
book/software-craft.md \
book/how-to-share-a-gut-feeling.md \
book/privilege.md \
book/Have-a-force-ranked-list-of-things-to-work-on.md \
book/build-prototypes-instead-of-calling-a-meeting.md \
book/20-percent-rule.md \
book/five-whys.md \
book/wishful-thinking.md \
book/Ubiquitous-Language.md \
book/walking-skeleton.md \
book/Use-TypeScript.md \
book/TDD.md \
book/zero-bug-policy.md \
book/push-to-deploy.md \
book/semantic-release.md \
book/Reproducible-Builds.md \
book/Go-serverless.md \
book/Event-Driven-Systems.md \
book/CQRS.md \
book/Hexagonal-Architecture.md \
book/Run-your-infra.md \
book/No-staging.md \
book/No-monorepos.md \
book/Short-lived-branches.md \
book/All-code-styleguides-must-be-enforceable-by-tools.md \
book/Flow-with-the-dependencies.md \
book/Books.md \
book/acknowledgements.md \
book/Refs.md
gut-feelings-first-principles-of-a-software-crafter-markus-tacker.pdf: Makefile book/*.md book/*.txt book/media/*
pandoc \
-o $@ \
--pdf-engine=xelatex \
book/title.txt \
book/cover.md \
book/about.md \
book/software-craft.md \
book/how-to-share-a-gut-feeling.md \
book/privilege.md \
book/Have-a-force-ranked-list-of-things-to-work-on.md \
book/build-prototypes-instead-of-calling-a-meeting.md \
book/20-percent-rule.md \
book/five-whys.md \
book/wishful-thinking.md \
book/Ubiquitous-Language.md \
book/walking-skeleton.md \
book/Use-TypeScript.md \
book/TDD.md \
book/zero-bug-policy.md \
book/push-to-deploy.md \
book/semantic-release.md \
book/Reproducible-Builds.md \
book/Go-serverless.md \
book/Event-Driven-Systems.md \
book/CQRS.md \
book/Hexagonal-Architecture.md \
book/Run-your-infra.md \
book/No-staging.md \
book/No-monorepos.md \
book/Short-lived-branches.md \
book/All-code-styleguides-must-be-enforceable-by-tools.md \
book/Flow-with-the-dependencies.md \
book/Books.md \
book/acknowledgements.md \
book/Refs.md