1# $NetBSD: varname-dot-libs.mk,v 1.1 2020/08/28 03:51:06 rillig Exp $ 2# 3# Tests for the special .LIBS variable, which is not documented in the 4# manual page. 5# 6# It is yet unclear in which situations this feature is useful. 7 8.SUFFIXES: .a 9 10.PATH.a: . .. 11 12.LIBS: .a 13 14# The .LIBS variable is not yet available. 15.if defined(${.LIBS:Q}) 16.error 17.endif 18 19all: 20 @echo .LIBS=${.LIBS:Q} 21