Mercurial > hg > js-dsp-test
annotate fft/fftw/fftw-3.3.4/simd-support/Makefile.am @ 39:c1ec7564ccac
Upstream COPYING file
author | Chris Cannam |
---|---|
date | Wed, 11 May 2016 09:43:00 +0100 |
parents | 26056e866c29 |
children |
rev | line source |
---|---|
Chris@19 | 1 AM_CPPFLAGS = -I$(top_srcdir)/kernel |
Chris@19 | 2 noinst_LTLIBRARIES = libsimd_support.la libsimd_sse2_nonportable.la |
Chris@19 | 3 |
Chris@19 | 4 libsimd_support_la_SOURCES = taint.c simd-common.h simd-sse2.h sse2.c \ |
Chris@19 | 5 x86-cpuid.h amd64-cpuid.h avx.c simd-avx.h altivec.c simd-altivec.h \ |
Chris@19 | 6 neon.c simd-neon.h |
Chris@19 | 7 |
Chris@19 | 8 # sse2-nonportable.c needs SSE2_CFLAGS, but Automake does not support |
Chris@19 | 9 # per-object CFLAGS. Thus we build a separate library. |
Chris@19 | 10 libsimd_sse2_nonportable_la_CFLAGS = $(SSE2_CFLAGS) |
Chris@19 | 11 libsimd_sse2_nonportable_la_SOURCES = sse2-nonportable.c |
Chris@19 | 12 |