back to the generic support rather than trying to use the asm backend which appears to be broken upstream. Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data. The "language" is a generic assembly language that represents many of the features available in SIMD architectures, including saturated addition and subtraction, and many arithmetic operations.
31 lines
644 B
Makefile
31 lines
644 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/03/25 10:23:26 sthen Exp $
|
|
|
|
COMMENT= library and toolset to operate arrays of data
|
|
|
|
DISTNAME= orc-0.4.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://code.entropywave.com/download/orc/
|
|
|
|
SHARED_LIBS+= orc-0.4 0.0 \
|
|
orc-float-0.4 0.0 \
|
|
orc-pixel-0.4 0.0 \
|
|
orc-test-0.4 0.0
|
|
|
|
HOMEPAGE= http://code.entropywave.com/projects/orc/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m pthread
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
# Should be 2.63
|
|
AUTOCONF_VERSION= 2.62
|
|
|
|
.include <bsd.port.mk>
|