forked from nakatamaho/mplapack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
118 lines (104 loc) · 3.05 KB
/
Makefile.am
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
SUBDIRS = external mpfrc++ mblas mlapack
if !DISABLE_BENCHMARK
SUBDIRS += benchmark
endif
if !DISABLE_EXAMPLES
SUBDIRS += examples
endif
ACLOCAL_AMFLAGS= -I m4
mlapack_includedir = $(includedir)/mlapack
mlapack_include_HEADERS = \
include/mpack_config.h \
include/blas.h \
include/lapack.h \
include/blaswrapper.h
if ENABLE_DD
mlapack_include_HEADERS += \
include/dd_complex.h \
include/mblas_dd.h \
include/mlapack_dd.h \
include/mutils_dd.h
endif
if ENABLE_GMP
mlapack_include_HEADERS += \
include/mblas_gmp.h \
include/mlapack_gmp.h \
include/mutils_gmp.h \
include/mpc_class.h
endif
if ENABLE_QD
mlapack_include_HEADERS += \
include/mblas_qd.h \
include/mlapack_qd.h \
include/mutils_qd.h \
include/qd_complex.h
endif
if ENABLE_MPFR
mlapack_include_HEADERS += \
include/mblas_mpfr.h \
include/mlapack_mpfr.h \
include/mutils_mpfr.h \
mpfrc++/mpcomplex.h \
mpfrc++/mpreal.h
endif
if ENABLE_DOUBLE
mlapack_include_HEADERS += \
include/mblas_double.h \
include/mlapack_double.h \
include/mutils_double.h
endif
if ENABLE_LONGDOUBLE
mlapack_include_HEADERS += \
include/mblas_longdouble.h \
include/mlapack_longdouble.h \
include/mutils_longdouble.h
endif
if ENABLE___FLOAT128
mlapack_include_HEADERS += \
include/mblas___float128.h \
include/mpfr___float128.h \
include/mlapack___float128.h \
include/mutils___float128.h
endif
noinst_HEADERS = include/mpack_debug.h include/mutils.h include/mblas.h include/mlapack.h include/mlapack_generic.h include/mpack_benchmark.h include/mpack_benchmark___float128.h include/mpack_benchmark_dd.h include/mpack_benchmark_double.h include/mpack_benchmark_gmp.h include/mpack_benchmark_mpfr.h include/mpack_benchmark_qd.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = mlapack.pc
EXTRA_DIST = \
misc/cudalt.py \
misc/build_mpack_for_mic.sh \
misc/prepare_mpacklibs_for_mic.sh \
mblas/optimized/dd/cuda/dd_real_cuda.h \
external/gmp/download/*.tar.bz2 \
external/gmp/Makefile.am \
external/gmp/Makefile.in \
external/mpfr/download/*.tar.bz2 \
external/mpfr/Makefile.am \
external/mpfr/Makefile.in \
external/mpc/download/*.tar.gz \
external/mpc/Makefile.am \
external/mpc/Makefile.in \
external/qd/download/*.tar.gz \
external/qd/Makefile.am \
external/qd/Makefile.in \
external/qd/patches/patch-mingw \
external/qd/patches/patch-noopt \
external/lapack/Makefile.am \
external/lapack/Makefile.in \
external/lapack/download/*.tgz \
external/lapack/patches/patch-mingw \
external/lapack/patches/patch-mic \
mpfrc++/copying.lib mpfrc++/copying mpfrc++/makefile.org \
mpfrc++/org/copying mpfrc++/org/copying.lib mpfrc++/org/example.cpp \
mpfrc++/org/makefile mpfrc++/org/mpfrc++.tar.gz \
mpfrc++/org/mpreal.cpp mpfrc++/org/mpreal.h
if !DISABLE_EXAMPLES
EXTRA_DIST += \
examples/mblas/Makefile.mingw \
examples/mblas/Makefile.freebsd \
examples/mblas/Makefile.linux \
examples/mblas/Makefile.macosx \
examples/mlapack/Makefile.mingw \
examples/mlapack/Makefile.freebsd \
examples/mlapack/Makefile.linux \
examples/mlapack/Makefile.macosx
endif