dce78baaf8
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.
24 lines
596 B
Makefile
24 lines
596 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $
|
|
#
|
|
|
|
DISTNAME= libgcroots-0.2.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://sigscheme.googlecode.com/files/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/sigscheme/wiki/libgcroots
|
|
COMMENT= Garbage collector supporting library
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= gcroots.pc.in
|
|
|
|
# This directory is used for c++ interface, but not build by default.
|
|
post-install:
|
|
rmdir ${DESTDIR}${PREFIX}/include/libgcroots
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|