a012fbb391
* Some speed improvements in SIMD code. * --without-cycle-counter option is removed. If no cycle counter is found, then the estimator is always used. A --with-slow-timer option is provided to force the use of lower-resolution timers. * Added missing static keyword that prevented simultaneous linkage of different-precision versions; thanks to Rasmus Larson for the bug report. * Corrected accidental omission of f77_wisdom.f file; thanks to Alan Watson. * Removed non-portable use of 'tempfile' in fftw-wisdom-to-conf script; thanks to Nicolas Decoster for the patch. * Added 'make smallcheck' target in tests/ directory, at the request of James Treacy.
29 lines
664 B
Makefile
29 lines
664 B
Makefile
# $NetBSD: Makefile,v 1.11 2003/07/08 14:05:29 wiz Exp $
|
|
|
|
.if (${MACHINE_ARCH} == "powerpc")
|
|
DISTNAME= fftw-3.0.1-fma
|
|
.else
|
|
DISTNAME= fftw-3.0.1
|
|
.endif
|
|
PKGNAME= fftw-3.0.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
|
|
http://www.fftw.org/
|
|
|
|
MAINTAINER= root@garbled.net
|
|
HOMEPAGE= http://www.fftw.org/
|
|
COMMENT= Collection of fast C routines to compute DFTs
|
|
|
|
USE_LIBTOOL= yes
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/fftw.pc.in
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-shared
|
|
USE_FORTRAN= yes
|
|
USE_NEW_TEXINFO= yes
|
|
USE_GMAKE= yes
|
|
INFO_FILES= fftw3.info
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|