mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
26 lines
238 B
Makefile
26 lines
238 B
Makefile
# $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
|