Changes: - add a couple of new elements - fix compilation with gcc 4 and on AMD64 - address some other minor issues.
23 lines
619 B
Makefile
23 lines
619 B
Makefile
# $NetBSD: buildlink3.mk,v 1.6 2005/04/18 00:13:05 salo Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use libebml.
|
|
#
|
|
|
|
BUILDLINK_DEPMETHOD.libebml?= build
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
LIBEBML_BUILDLINK3_MK:= ${LIBEBML_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= libebml
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibebml}
|
|
BUILDLINK_PACKAGES+= libebml
|
|
|
|
.if !empty(LIBEBML_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.libebml+= libebml>=0.7.4
|
|
BUILDLINK_PKGSRCDIR.libebml?= ../../devel/libebml
|
|
.endif # LIBEBML_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|