| Current Path : /usr/tests/usr.bin/bmake/syntax/semi/ |
| Current File : //usr/tests/usr.bin/bmake/syntax/semi/Makefile.test |
# $FreeBSD$
#
# Test handling of escaped newlines.
#
.ifmake test1
FOO=
BAR=bar
FOO != echo ${FOO} ; echo ${BAR}
test1:
echo ${FOO}
.endif
.ifmake test2
FOO=foo
BAR=bar
FOO != echo ${FOO} ; echo ${BAR}
test2:
echo ${FOO}
.endif