]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/usr.bin/make/variables/opt_V/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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}'