forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am.~3~
76 lines (60 loc) · 1.87 KB
/
Makefile.am.~3~
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
OPTIONS_AUTOMAKE=gnu
lib_LTLIBRARIES = libfftw3@[email protected]
# pkgincludedir = $(includedir)/fftw3@PREC_SUFFIX@
# nodist_pkginclude_HEADERS = config.h
# recompile genfft if maintainer mode is true
if MAINTAINER_MODE
GENFFT = genfft
else
GENFFT =
endif
ACLOCAL_AMFLAGS=-I ./m4
SUBDIRS=support $(GENFFT) kernel simd dft rdft reodft api threads \
cell libbench2 . tests mpi doc tools
EXTRA_DIST=COPYRIGHT bootstrap.sh CONVENTIONS fftw.pc.in m4
if HAVE_SIMD
SIMD_LIBS= \
simd/libsimd.la \
simd/nonportable/libsimd_nonportable.la \
dft/simd/libdft_simd.la \
dft/simd/codelets/libdft_codelets_simd.la
SIMD_OR_CELL_LIBS=simd/libsimd.la
endif
if HAVE_CELL
CELL_LIBS=cell/libcell.la
SIMD_OR_CELL_LIBS=simd/libsimd.la
endif
if SMP
if COMBINED_THREADS
COMBINED_THREADLIBS=threads/libfftw3@PREC_SUFFIX@_threads.la
endif
endif
libfftw3@PREC_SUFFIX@_la_SOURCES =
libfftw3@PREC_SUFFIX@_la_LIBADD = \
kernel/libkernel.la \
dft/libdft.la \
dft/codelets/libdft_codelets.la \
dft/codelets/standard/libdft_standard.la \
rdft/librdft.la \
rdft/codelets/librdft_codelets.la \
rdft/codelets/r2cf/librdft_codelets_r2cf.la \
rdft/codelets/r2cb/librdft_codelets_r2cb.la \
rdft/codelets/r2r/librdft_codelets_r2r.la \
reodft/libreodft.la \
api/libapi.la \
$(SIMD_LIBS) $(COMBINED_THREADLIBS)
libfftw3@PREC_SUFFIX@_la_LDFLAGS = -no-undefined -version-info \
@SHARED_VERSION_INFO@
fftw3@[email protected]: fftw.pc
cp -f fftw.pc fftw3@[email protected]
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = fftw3@[email protected]
WISDOM_DIR = /etc/fftw
WISDOM = wisdom@PREC_SUFFIX@
WISDOM_TIME=12 # default to 12-hour limit, i.e. overnight
WISDOM_FLAGS=--verbose --canonical --time-limit=$(WISDOM_TIME)
wisdom:
tools/fftw@PREC_SUFFIX@-wisdom -o $@ $(WISDOM_FLAGS)
install-wisdom: wisdom
$(mkinstalldirs) $(WISDOM_DIR)
$(INSTALL_DATA) wisdom $(WISDOM_DIR)/$(WISDOM)