Path: blob/main/usr.bin/bmake/tests/syntax/semi/Makefile.test
34889 views
# # 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