summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: 5f6db478ffca1550c672b780d4b06ab053ad192c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28


lib_LTLIBRARIES = libffts.la

libffts_la_SOURCES = ffts.c ffts_nd.c ffts_real.c ffts_real_nd.c patterns.c 

if DYNAMIC_DISABLED
libffts_la_SOURCES += ffts_static.c
else
libffts_la_SOURCES += codegen.c
endif

libffts_includedir=$(includedir)/ffts
libffts_include_HEADERS = ../include/ffts.h

if HAVE_NEON

if DYNAMIC_DISABLED
libffts_la_SOURCES += neon_static_f.s neon_static_i.s
else
libffts_la_SOURCES += neon.s 
endif

else 
if HAVE_SSE
libffts_la_SOURCES += sse.s
endif
endif
OpenPOWER on IntegriCloud