varname-dot-libs.mk revision 1.1
11.1Srillig# $NetBSD: varname-dot-libs.mk,v 1.1 2020/08/28 03:51:06 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.1Srillig.if defined(${.LIBS:Q})
161.1Srillig.error
171.1Srillig.endif
181.1Srillig
191.1Srilligall:
201.1Srillig	@echo .LIBS=${.LIBS:Q}
21