Deleted Added
sdiff udiff text old ( 151443 ) new ( 263346 )
full compact
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