diff options
author | jtb <jtb> | 2003-07-10 13:16:20 +0000 |
---|---|---|
committer | jtb <jtb> | 2003-07-10 13:16:20 +0000 |
commit | 22e24d6bac8bf9572cf893bce721c7c99da8af82 (patch) | |
tree | 5155d3bc858cc16e0b77a6a21a8b033ff96e9bf6 | |
parent | af1812c691db8219a0a7e078c68016948486c6b3 (diff) | |
download | pkgsrc-22e24d6bac8bf9572cf893bce721c7c99da8af82.tar.gz |
* Needs some things not yet in the base system pthread library.
Depend on devel/pth for now.
* Currently only supported on alpha, i386, mips*, powerpc, sparc
* Add a test target.
-rw-r--r-- | lang/cilk/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lang/cilk/Makefile b/lang/cilk/Makefile index 67dee6d5e78..67b6db18b4f 100644 --- a/lang/cilk/Makefile +++ b/lang/cilk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2003/07/04 19:59:51 seb Exp $ +# $NetBSD: Makefile,v 1.11 2003/07/10 13:16:20 jtb Exp $ DISTNAME= cilk-5.3.1 PKGREVISION= 2 @@ -10,6 +10,8 @@ MAINTAINER= tech-pkg@netbsd.org HOMEPAGE= http://supertech.lcs.mit.edu/cilk/ COMMENT= multithreaded parallel programming language based on ANSI C +ONLY_FOR_PLATFORM= *-*-alpha *-*-i386 -*-*mipse[bl] *-*-powerpc *-*-sparc + GNU_CONFIGURE= # defined USE_BUILDLINK2= # defined USE_GMAKE= # defined @@ -23,6 +25,8 @@ LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig USE_NEW_TEXINFO= YES INFO_FILES= cilk-faq.info +TEST_TARGET= check + post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cilk cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS COPYING \ @@ -33,5 +37,5 @@ post-install: ${PREFIX}/share/examples/cilk ${INSTALL_DATA} ${WRKSRC}/FAQ/cilk-faq.info ${PREFIX}/info -.include "../../mk/pthread.buildlink2.mk" +.include "../../devel/pth/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |