summaryrefslogtreecommitdiff
path: root/devel/libjit/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2004-05-16 01:12:14 +0000
committerxtraeme <xtraeme@pkgsrc.org>2004-05-16 01:12:14 +0000
commitd3c85a060e2fe22d770e7594122f59a756036fab (patch)
treee90a6f90c222ba7df0dd83bb2ebb1cb1aa8781cc /devel/libjit/Makefile
parenteb316020d429c1d806953fa3eb003ce849e5df15 (diff)
downloadpkgsrc-d3c85a060e2fe22d770e7594122f59a756036fab.tar.gz
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.
Diffstat (limited to 'devel/libjit/Makefile')
-rw-r--r--devel/libjit/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/libjit/Makefile b/devel/libjit/Makefile
new file mode 100644
index 00000000000..1aac54f5bad
--- /dev/null
+++ b/devel/libjit/Makefile
@@ -0,0 +1,20 @@
+# $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"