blob: c3be8d0f781764f67bb8d008b2aa3a4881928a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: varmod-order-reverse.mk,v 1.5 2021/08/03 04:46:49 rillig Exp $
#
# Tests for the :Or variable modifier, which returns the words, sorted in
# descending order.
WORDS= one two three four five six seven eight nine ten
.if ${WORDS:Or} != "two three ten six seven one nine four five eight"
. error ${WORDS:Or}
.endif
all:
|