]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/usr.bin/make/variables/opt_V/Makefile
[SA-14:31] Fix multiple vulnerabilities in NTP suite.
[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}'