varname-dot-libs.mk revision 1.2
11.2Srillig# $NetBSD: varname-dot-libs.mk,v 1.2 2020/09/13 16:53:19 rillig Exp $ 21.1Srillig# 31.1Srillig# Tests for the special .LIBS variable, which is not documented in the 41.1Srillig# manual page. 51.1Srillig# 61.1Srillig# It is yet unclear in which situations this feature is useful. 71.1Srillig 81.1Srillig.SUFFIXES: .a 91.1Srillig 101.1Srillig.PATH.a: . .. 111.1Srillig 121.1Srillig.LIBS: .a 131.1Srillig 141.1Srillig# The .LIBS variable is not yet available. 151.2Srillig.if defined(.LIBS) 161.2Srillig. error 171.1Srillig.endif 181.1Srillig 191.1Srilligall: 201.1Srillig @echo .LIBS=${.LIBS:Q} 21