1# $FreeBSD$ 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 27