]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.bin/make/tests/syntax/semi/Makefile.test
MFC various moves of tools/regressions/ tests to the new infrastructure.
[FreeBSD/stable/10.git] / usr.bin / make / tests / syntax / semi / Makefile.test
1 # $FreeBSD$
2 #
3 # Test handling of escaped newlines.
4 #
5
6 .ifmake test1
7
8 FOO=
9 BAR=bar
10 FOO != echo ${FOO} ; echo ${BAR}
11
12 test1:
13         echo ${FOO}
14
15 .endif
16
17 .ifmake test2
18
19 FOO=foo
20 BAR=bar
21 FOO != echo ${FOO} ; echo ${BAR}
22
23 test2:
24         echo ${FOO}
25
26 .endif