1*06b9b3e0SSimon J. Gerraty# $NetBSD: varmod-to-one-word.mk,v 1.3 2020/12/20 23:29:50 rillig Exp $ 22c3632d1SSimon J. Gerraty# 32c3632d1SSimon J. Gerraty# Tests for the :tW variable modifier, which treats the variable value 42c3632d1SSimon J. Gerraty# as a single word, for all following modifiers. 52c3632d1SSimon J. Gerraty 6*06b9b3e0SSimon J. GerratySENTENCE= The quick brown fox jumps over the lazy brown dog. 7*06b9b3e0SSimon J. Gerraty 8*06b9b3e0SSimon J. Gerraty.if ${SENTENCE:tW:[#]} != 1 9*06b9b3e0SSimon J. Gerraty. error 10*06b9b3e0SSimon J. Gerraty.endif 11*06b9b3e0SSimon J. Gerraty.if ${SENTENCE:tw:[#]} != 10 12*06b9b3e0SSimon J. Gerraty. error 13*06b9b3e0SSimon J. Gerraty.endif 14*06b9b3e0SSimon J. Gerraty 15*06b9b3e0SSimon J. Gerraty# Protect against accidental freeing of the variable value. 16*06b9b3e0SSimon J. Gerraty.if ${SENTENCE} != "The quick brown fox jumps over the lazy brown dog." 17*06b9b3e0SSimon J. Gerraty. error 18*06b9b3e0SSimon J. Gerraty.endif 192c3632d1SSimon J. Gerraty 202c3632d1SSimon J. Gerratyall: 212c3632d1SSimon J. Gerraty @:; 22