blob: 7295adfbc80e04c990587d8583a71b90c2157054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.18 2015/12/26 23:47:48 dholland Exp $
#
DISTNAME= libjit-0.1.2
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://download.savannah.gnu.org/releases/dotgnu-pnet/libjit-releases/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.southern-storm.com.au/libjit.html
COMMENT= Just-In-Time compilation functionality
LICENSE= gnu-lgpl-v2.1
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake lex yacc makeinfo
GNU_CONFIGURE= yes
INFO_FILES= yes
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
CONFIGURE_ARGS+= ac_cv_header_tgmath_h=no
.endif
# this is supposed to be generated, not shipped
post-extract:
rm -f ${WRKSRC}/include/jit/jit-arch.h
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|