pkgsrc/devel/libjit/Makefile
xtraeme d3c85a060e Initial import of libjit-0.0.2.
The libjit library implements Just-In-Time compilation functionality. Unlike
other JIT's, this one is designed to be independent of any particular virtual
machine bytecode format or language. The hope is that Free Software projects
can get a leg-up on proprietry VM vendors by using this library rather than
spending large amounts of time writing their own JIT from scratch.

This JIT is also designed to be portable to multiple archictures. If you run
libjit on a machine for which a native code generator is not yet available,
then libjit will fall back to interpreting the code. This way, you don't need
to write your own interpreter for your bytecode format if you don't want to.
2004-05-16 01:12:14 +00:00

20 lines
483 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2004/05/16 01:12:14 xtraeme Exp $
#
DISTNAME= libjit-0.0.2
CATEGORIES= devel
MASTER_SITES= http://www.southern-storm.com.au/download/
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.southern-storm.com.au/libjit.html
COMMENT= Just-In-Time compilation functionality
USE_BUILDLINK3= yes
USE_LIBTOOL= yes
USE_GNU_TOOLS+= make
GNU_CONFIGURE= yes
INFO_FILES= libjit.info
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"