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
31 lines
964 B
Makefile
31 lines
964 B
Makefile
# $NetBSD: buildlink3.mk,v 1.7 2006/07/08 23:10:55 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
GHC_BUILDLINK3_MK:= ${GHC_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= ghc
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nghc}
|
|
BUILDLINK_PACKAGES+= ghc
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}ghc
|
|
|
|
.if !empty(GHC_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.ghc+= ghc>=6.2.1nb1
|
|
BUILDLINK_ABI_DEPENDS.ghc?= ghc>=6.4.1nb1
|
|
BUILDLINK_PKGSRCDIR.ghc?= ../../lang/ghc
|
|
|
|
BUILDLINK_DEPMETHOD.ghc?= build
|
|
.endif # GHC_BUILDLINK3_MK
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|
|
|
|
# We include gmp/buildlink3.mk here so that "gmp" is registered as a
|
|
# direct dependency for any package that includes this buildlink3.mk
|
|
# to get ghc as a build dependency. This is needed since software
|
|
# built by ghc requires routines from the "gmp" shared library.
|
|
#
|
|
.include "../../devel/gmp/buildlink3.mk"
|