blob: 7fdc0876d6ba418db78db2a702bd0f01f5bd874c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
escape = $(subst ','\'',$(1))
test_var ?= This is safe.
test_var := $(value test_var)
export test_var
inner_var := Inner variable
outer_var := Outer variable - $(inner_var) - $(test_var)
echo_test_var := printf '%s\n' '$(call escape,$(test_var))'
bash_test_var := bash -c '$(call escape,$(echo_test_var))'
echo_outer_var := printf '%s\n' '$(call escape,$(outer_var))'
.PHONY: test
test:
@printf '%s\n' '$(call escape,$(test_var))'
@printf '%s\n' "$$test_var"
@bash -c '$(call escape,$(echo_test_var))'
@bash -c '$(call escape,$(bash_test_var))'
@printf '%s\n' '$(call escape,$(outer_var))'
@bash -c '$(call escape,$(echo_outer_var))'
|