Deleted Added
full compact
Makefile.test (151443) Makefile.test (263346)
1# $FreeBSD: head/tools/regression/usr.bin/make/syntax/semi/Makefile 151443 2005-10-18 07:28:09Z harti $
1# $FreeBSD: head/usr.bin/make/tests/syntax/semi/Makefile.test 263346 2014-03-19 12:29:20Z jmmv $
2#
3# Test handling of escaped newlines.
4#
5
6.ifmake test1
7
8FOO=
9BAR=bar
10FOO != echo ${FOO} ; echo ${BAR}
11
12test1:
13 echo ${FOO}
14
15.endif
16
17.ifmake test2
18
19FOO=foo
20BAR=bar
21FOO != echo ${FOO} ; echo ${BAR}
22
23test2:
24 echo ${FOO}
25
26.endif
2#
3# Test handling of escaped newlines.
4#
5
6.ifmake test1
7
8FOO=
9BAR=bar
10FOO != echo ${FOO} ; echo ${BAR}
11
12test1:
13 echo ${FOO}
14
15.endif
16
17.ifmake test2
18
19FOO=foo
20BAR=bar
21FOO != echo ${FOO} ; echo ${BAR}
22
23test2:
24 echo ${FOO}
25
26.endif