c16221a4db
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
20 lines
615 B
Makefile
20 lines
615 B
Makefile
# $NetBSD: buildlink3.mk,v 1.7 2006/07/08 23:10:40 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
SQLITE_BUILDLINK3_MK:= ${SQLITE_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= sqlite
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nsqlite}
|
|
BUILDLINK_PACKAGES+= sqlite
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}sqlite
|
|
|
|
.if !empty(SQLITE_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.sqlite+= sqlite>=2.8.0
|
|
BUILDLINK_ABI_DEPENDS.sqlite+= sqlite>=2.8.16nb1
|
|
BUILDLINK_PKGSRCDIR.sqlite?= ../../databases/sqlite
|
|
.endif # SQLITE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|