aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/hash_in_var.mk
blob: 9db88d6244ae327e3c89c487e7aff43f4768f7ae (plain)
1
2
3
4
5
6
7
8
9
10
$(shell mkdir -p tmp)
file = $(shell echo tmp/test\#.ext)

all: test1

test1: $(file)
	echo PASS

$(file):
	touch $(file)