Makefile.test revision 146856
1# $FreeBSD: head/tools/regression/usr.bin/make/syntax/enl/Makefile 146856 2005-06-01 11:26:47Z harti $
2#
3# Test handling of escaped newlines.
4#
5
6.ifmake test1
7
8# This should succeed
9\
10\
11\
12test1:
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\
22test2:
23	@echo ok
24
25.endif
26