blob: 1c046b7dacb000e75c6b347610bd6d9115596f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: dblquote.mk,v 1.1.1.1 2005/05/15 21:10:16 rillig Exp $
#
# This file demonstrates that quoted strings are interpreted when appying
# the ``modifiers'', not when creating strings by assignment.
#
DBLQUOTE= "
DBLQUOTE+= "a b"
DBLQUOTE+= "
all:
echo ${DBLQUOTE:Q}
echo ${DBLQUOTE:M*:Q}
|