aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/realpath.mk
blob: 0d57e3bd5da078d7b71568025ae49e36c632b424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
foo = $(realpath ./foo)
bar = $(realpath ./bar)
foofoo = $(realpath ./foo ./foo)
foobar = $(realpath ./foo ./bar)

test: foo
	echo $(foo)
	echo $(bar)
	echo $(foofoo)
	echo $(foobar)

foo:
	touch foo