1# 2# Test handling of escaped newlines. 3# 4 5.ifmake test1 6 7FOO= 8BAR=bar 9FOO != echo ${FOO} ; echo ${BAR} 10 11test1: 12 echo ${FOO} 13 14.endif 15 16.ifmake test2 17 18FOO=foo 19BAR=bar 20FOO != echo ${FOO} ; echo ${BAR} 21 22test2: 23 echo ${FOO} 24 25.endif 26