1 # $NetBSD: varmod-to-lower.mk,v 1.3 2020/08/28 17:21:02 rillig Exp $ 2 # 3 # Tests for the :tl variable modifier, which returns the words in the 4 # variable value, converted to lowercase. 5 6 .if ${:UUPPER:tl} != "upper" 7 .error 8 .endif 9 10 .if ${:Ulower:tl} != "lower" 11 .error 12 .endif 13 14 .if ${:UMixeD case.:tl} != "mixed case." 15 .error 16 .endif 17 18 all: 19 @:; 20