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
30 lines
792 B
Makefile
30 lines
792 B
Makefile
# $NetBSD: buildlink3.mk,v 1.9 2006/07/08 23:10:47 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
NSS_BUILDLINK3_MK:= ${NSS_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= nss
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nnss}
|
|
BUILDLINK_PACKAGES+= nss
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}nss
|
|
|
|
.if !empty(NSS_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.nss+= nss>=3.9.2nb1
|
|
BUILDLINK_ABI_DEPENDS.nss+= nss>=3.9.2nb4
|
|
BUILDLINK_PKGSRCDIR.nss?= ../../devel/nss
|
|
|
|
BUILDLINK_FILES.nss+= lib/nss/*
|
|
BUILDLINK_FILES.nss+= include/nss/*
|
|
|
|
BUILDLINK_INCDIRS.nss+= include/nss
|
|
BUILDLINK_LIBDIRS.nss+= lib/nss
|
|
BUILDLINK_RPATHDIRS.nss+= lib/nss
|
|
|
|
.endif # NSS_BUILDLINK3_MK
|
|
|
|
.include "../../devel/nspr/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|