Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.3/simd-support/Makefile.am @ 10:37bf6b4a2645
Add FFTW3
author | Chris Cannam |
---|---|
date | Wed, 20 Mar 2013 15:35:50 +0000 |
parents | |
children |
rev | line source |
---|---|
Chris@10 | 1 AM_CPPFLAGS = -I$(top_srcdir)/kernel |
Chris@10 | 2 noinst_LTLIBRARIES = libsimd_support.la libsimd_sse2_nonportable.la |
Chris@10 | 3 |
Chris@10 | 4 libsimd_support_la_SOURCES = taint.c simd-common.h simd-sse2.h sse2.c \ |
Chris@10 | 5 x86-cpuid.h amd64-cpuid.h avx.c simd-avx.h altivec.c simd-altivec.h \ |
Chris@10 | 6 neon.c simd-neon.h |
Chris@10 | 7 |
Chris@10 | 8 # sse2-nonportable.c needs SSE2_CFLAGS, but Automake does not support |
Chris@10 | 9 # per-object CFLAGS. Thus we build a separate library. |
Chris@10 | 10 libsimd_sse2_nonportable_la_CFLAGS = $(SSE2_CFLAGS) |
Chris@10 | 11 libsimd_sse2_nonportable_la_SOURCES = sse2-nonportable.c |
Chris@10 | 12 |