pkgsrc/regress/make-quoting/files/for.mk
rillig c98f603243 Imported make-quoting, a regression test to make sure various weird quoting
styles stay valid when updating the pkgsrc make(1) program. The test cases
also serve as kind of demonstration how things work inside make(1).
2005-05-15 21:10:16 +00:00

11 lines
236 B
Makefile

# $NetBSD: for.mk,v 1.1.1.1 2005/05/15 21:10:16 rillig Exp $
#
# .for loops don't interpret variables in sh(1) mode, but split them at
# whitespace.
LIST_1= 1 2 "3 3" '4 ' 5'5'5"5"5
all:
.for i in ${LIST_1}
echo ${i:Q}
.endfor