diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:11:58 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:11:58 +0200 |
commit | 5cd34f38fbb0312e6897d187425144d1105b74ff (patch) | |
tree | 2900730f12a6e9b1d06d54b0dc72aab11e047a4c /Makefile | |
parent | bump jekyll-theme (diff) | |
download | egor-tensin.github.io-5cd34f38fbb0312e6897d187425144d1105b74ff.tar.gz egor-tensin.github.io-5cd34f38fbb0312e6897d187425144d1105b74ff.zip |
Makefile: consistent prelude
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,9 +1,10 @@ MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables +unexport MAKEFLAGS .DEFAULT_GOAL := all .DELETE_ON_ERROR: .SUFFIXES: SHELL := bash -.SHELLFLAGS := -e -o pipefail -c +.SHELLFLAGS := -eu -o pipefail -c escape = $(subst ','\'',$(1)) |