]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/tools/regression/usr.bin/make/syntax/enl/Makefile
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / 6 / tools / regression / usr.bin / make / syntax / enl / Makefile
1 # $FreeBSD$
2 #
3 # Test handling of escaped newlines.
4 #
5
6 .ifmake test1
7
8 # This should succeed
9 \
10 \
11 \
12 test1:
13         @echo ok
14
15 .elifmake test2
16
17 # This should fail because the comment continues on the next lines leading
18 # to an unassociated shell command.
19 \
20 #\
21 \
22 test2:
23         @echo ok
24
25 .endif