File: Makefile.am

package info (click to toggle)
fftw3 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 16,824 kB
  • ctags: 8,846
  • sloc: ansic: 246,029; sh: 10,285; ml: 5,470; perl: 1,423; makefile: 935; fortran: 110; asm: 26
file content (22 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AM_CPPFLAGS = -I$(top_srcdir)/kernel -I$(top_srcdir)/dft	\
-I$(top_srcdir)/simd
noinst_LTLIBRARIES = libcell.la
EXTRA_DIST=spufftw-embed.S

if HAVE_CELL
SUBDIRS=spu
SPU_STUB=spufftw-embed.lo
endif

if SINGLE
PLANS=plans-single.c
else
PLANS=plans-double.c
endif

libcell_la_SOURCES = cell.c conf.c copy.c dft-direct-cell.c	\
transpose.c $(PLANS) fftw-cell.h
libcell_la_LIBADD = $(SPU_STUB)

spufftw-embed.lo: spufftw-embed.S spu/spufftw
	$(LTCOMPILE) -c -x assembler-with-cpp -o $@ $<