pkgsrc/devel/libgcroots/buildlink3.mk
obache dce78baaf8 Import libgcroots version 0.2.1.
This library abstracts architecture-dependent part of garbage collector
roots acquisition such as register windows of SPARC and register stack
backing store of IA-64. Main part of the code is based on Boehm GC 7.0.

With this library, you can easily write your own garbage collector such as
for small footprint, some application-specific optimizations, just learning
or to test experimental ideas.
2008-02-29 13:06:36 +00:00

19 lines
616 B
Makefile

# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
LIBGCROOTS_BUILDLINK3_MK:= ${LIBGCROOTS_BUILDLINK3_MK}+
.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+= libgcroots
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibgcroots}
BUILDLINK_PACKAGES+= libgcroots
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libgcroots
.if ${LIBGCROOTS_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.libgcroots+= libgcroots>=0.2.1
BUILDLINK_PKGSRCDIR.libgcroots?= ../../devel/libgcroots
.endif # LIBGCROOTS_BUILDLINK3_MK
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}