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
28 lines
854 B
Makefile
28 lines
854 B
Makefile
# $NetBSD: buildlink3.mk,v 1.9 2006/07/08 23:10:54 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
F2C_BUILDLINK3_MK:= ${F2C_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= f2c
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nf2c}
|
|
BUILDLINK_PACKAGES+= f2c
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}f2c
|
|
|
|
.if !empty(F2C_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.f2c+= f2c>=20001205nb3
|
|
BUILDLINK_ABI_DEPENDS.f2c+= f2c>=20001205nb8
|
|
BUILDLINK_PKGSRCDIR.f2c?= ../../lang/f2c
|
|
.endif # F2C_BUILDLINK3_MK
|
|
|
|
# The f2c-f77 script takes some environment variables to override hardcoded
|
|
# values for the compiler and C preprocessor.
|
|
#
|
|
CONFIGURE_ENV+= CC_f2c=${CC:Q}
|
|
CONFIGURE_ENV+= CPP=${CPP:Q}
|
|
MAKE_ENV+= CC_f2c=${CC:Q}
|
|
MAKE_ENV+= CPP=${CPP:Q}
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|