diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:00:16 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:00:16 +0200 |
commit | 441025eae49779c246902c6333c9b2b67a14fabe (patch) | |
tree | a15a1b8a9dfab9902645e60159b06caec5ed0656 /Makefile | |
parent | my_server: check w/ sudo (diff) | |
download | maintenance-441025eae49779c246902c6333c9b2b67a14fabe.tar.gz maintenance-441025eae49779c246902c6333c9b2b67a14fabe.zip |
Makefile: consistent prelude
Diffstat (limited to '')
-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)) |