~ubuntu-branches/ubuntu/utopic/fftw3/utopic

« back to all changes in this revision

Viewing changes to cell/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-14 13:21:22 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20111214132122-l4avyl2kkr7vq5aj
Tags: 3.3-1ubuntu1
* Merge with Debian; remaining changes:
  - Revert the ARM workaround.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AM_CPPFLAGS = -I$(top_srcdir)/kernel -I$(top_srcdir)/dft        \
2
 
-I$(top_srcdir)/simd
3
 
noinst_LTLIBRARIES = libcell.la
4
 
EXTRA_DIST=spufftw-embed.S
5
 
 
6
 
if HAVE_CELL
7
 
SUBDIRS=spu
8
 
SPU_STUB=spufftw-embed.lo
9
 
endif
10
 
 
11
 
if SINGLE
12
 
PLANS=plans-single.c
13
 
else
14
 
PLANS=plans-double.c
15
 
endif
16
 
 
17
 
libcell_la_SOURCES = cell.c conf.c copy.c dft-direct-cell.c     \
18
 
transpose.c $(PLANS) fftw-cell.h
19
 
libcell_la_LIBADD = $(SPU_STUB)
20
 
 
21
 
spufftw-embed.lo: spufftw-embed.S spu/spufftw
22
 
        $(LTCOMPILE) -c -x assembler-with-cpp -o $@ $<