Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Making Makefiles
Search
Alex Tercete
February 21, 2020
Programming
0
68
Making Makefiles
Makefiles are pretty if you learned to appreciate their beauty.
Alex Tercete
February 21, 2020
Tweet
Share
More Decks by Alex Tercete
See All by Alex Tercete
Shipping containers
alextercete
0
56
Parallelism and Symmetry
alextercete
0
220
Porting to .NET Standard
alextercete
0
58
Prepping Commits
alextercete
1
130
The end of your line-endings nightmare
alextercete
0
190
I love sushi, therefore I love rebase
alextercete
0
100
ReadyRoll for DotNet developers
alextercete
0
88
Coding Dojo: The Randori Kata
alextercete
1
510
How to be a good pair [programmer]
alextercete
0
130
Other Decks in Programming
See All in Programming
英語文法から学ぶ、クリーンな設計の秘訣
newnomad
1
270
SLI/SLOの設定を進めるその前に アラート品質の改善に取り組んだ話
tanden
2
730
CQRS+ES勉強会#1
rechellatek
0
390
ニックトレイン登壇資料
ryotakurokawa
0
140
goにおける コネクションプールの仕組み を軽く掘って見た
aronokuyama
0
140
私の愛したLaravel 〜レールを超えたその先へ〜
kentaroutakeda
12
3.5k
Firebase Dynamic Linksの代替手段を自作する / Create your own Firebase Dynamic Links alternative
kubode
0
180
Preact、HooksとSignalsの両立 / Preact: Harmonizing Hooks and Signals
ssssota
1
690
Kubernetesで実現できるPlatform Engineering の現在地
nwiizo
2
1.7k
AtCoder Heuristic First-step Vol.1 講義スライド(山登り法・焼きなまし法編)
takumi152
3
980
NestJSのコードからOpenAPIを自動生成する際の最適解を探す
astatsuya
0
180
RailsでCQRS/ESをやってみたきづき
suzukimar
2
1.5k
Featured
See All Featured
It's Worth the Effort
3n
184
28k
Git: the NoSQL Database
bkeepers
PRO
429
65k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
12
1.4k
Why You Should Never Use an ORM
jnunemaker
PRO
55
9.3k
How to Think Like a Performance Engineer
csswizardry
22
1.5k
Building Your Own Lightsaber
phodgson
104
6.3k
Making Projects Easy
brettharned
116
6.1k
Become a Pro
speakerdeck
PRO
27
5.2k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2.1k
A Philosophy of Restraint
colly
203
16k
Adopting Sorbet at Scale
ufuk
75
9.3k
Transcript
Alex Tercete @alextercete $ make Makefile
None
None
run.sh #!/bin/sh docker build -t my_image . docker run -w
/app -v $(pwd):/app my_image
None
run.ps1 docker build -t my_image . docker run -w /app
-v $PWD:/app my_image
None
Makefile build: docker build -t my_image . run: build docker
run -w /app -v $(realpath .):/app my_image
Make is pretty
Make is pretty old
None
Make is pretty popular
None
Make is pretty scary
None
Make is pretty weird
Makefile print_variable: my_variable='blah' echo $my_variable
Makefile print_variable: my_variable='blah' echo $my_variable
Makefile print_variable: @ my_variable='blah'; \ echo $$my_variable
Make is pretty cross-platform
Makefile VALUE = default print_value: @ echo Value is $(VALUE)
Makefile list_all: @ ls -la
Makefile list_all: @ ls -la
Makefile LS = docker run \ --rm -w /app -v
"$(realpath .):/app" bash:5 \ ls list_all: @ $(LS) -la
Makefile ifeq ($(OS), Windows_NT) HOME = $(USERPROFILE) endif home: @
echo There is no place like $(HOME)
Make is pretty powerful
Makefile VALUE ?= default print_value: @ echo Value is $(VALUE)
Makefile release: require_version @ echo "Starting $(VERSION) release..." require_version: ifndef
VERSION $(error You must specify a VERSION variable) endif
Makefile REMOTE_URL = $(shell git remote get-url origin) ifeq ($(subst
git@,,$(REMOTE_URL)), $(REMOTE_URL)) REMOTE_PROTOCOL = HTTPS else REMOTE_PROTOCOL = SSH endif print_remote_protocol: @ echo $(REMOTE_PROTOCOL)
Make is pretty
$ xcode-select --install $ sudo apt install build-essential > choco
install make
None
Alex Tercete @alextercete Thanks!