aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile_escaping/quoting_args.mk
blob: 6d7278caa007c1d2c9174cbc70f8a5b487198616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables
unexport MAKEFLAGS
.DEFAULT_GOAL := all
.DELETE_ON_ERROR:
.SUFFIXES:
SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c

test_var := Same line?
export test_var

test:
	@printf '%s\n' $(test_var)
	@printf '%s\n' '$(test_var)'
	@printf '%s\n' $$test_var
	@printf '%s\n' "$$test_var"