]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/usr.bin/make/variables/opt_V/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / tools / regression / usr.bin / make / variables / opt_V / Makefile
1 # $FreeBSD$
2 #
3 # Test the -V option
4 #
5
6 FOO=    foo
7 FOOBAR= ${FOO}bar
8
9 test1:
10         @echo "-V FOOBAR"
11         @${MAKE} -V FOOBAR
12
13 test2:
14         @echo '-V "$${FOOBAR}"'
15         @${MAKE} -V '$${FOOBAR}'