forked from BIC-MNI/EBTKS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
113 lines (102 loc) · 2.42 KB
/
Makefile.am
File metadata and controls
113 lines (102 loc) · 2.42 KB
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
AUTOMAKE_OPTIONS = check-news
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/templates -DUSE_COMPMAT -DUSE_DBLMAT
lib_LTLIBRARIES = libEBTKS.la
EXTRA_DIST = $(m4_files) \
epm-header.in
# Some #include'd C++ sources which are not independently compiled.
#
noinst_HEADERS = \
templates/SimpleArraySpec.cc \
templates/MatrixSpec.cc \
clapack/f2c.h \
clapack/blaswrap.h
# Headers which are installed.
#
include_ebtksdir = $(includedir)/EBTKS
include_ebtks_HEADERS = \
include/amoeba.h \
include/assert.h \
include/backProp.h \
include/Complex.h \
include/dcomplex.h \
include/fcomplex.h \
include/FileIO.h \
include/Histogram.h \
include/matlabSupport.h \
include/Minc.h \
include/MPoint.h \
include/MString.h \
include/MTypes.h \
include/OpTimer.h \
include/OrderedCltn.h \
include/Path.h \
include/Polynomial.h \
include/popen.h \
include/TrainingSet.h \
include/trivials.h \
templates/Array.h \
templates/CachedArray.h \
templates/Dictionary.h \
templates/Matrix3D.h \
templates/Matrix.h \
templates/MatrixSupport.h \
templates/MatrixTest.h \
templates/miscTemplateFunc.h \
templates/Pool.h \
templates/SimpleArray.h \
templates/Stack.h \
templates/ValueMap.h
# Source files
#
libEBTKS_la_SOURCES = version.cc \
src/FileIO.cc \
src/Histogram.cc \
src/MPoint.cc \
src/MString.cc \
src/OpTimer.cc \
src/OrderedCltn.cc \
src/Path.cc \
src/Polynomial.cc \
src/TrainingSet.cc \
src/amoeba.cc \
src/backProp.cc \
src/fcomplex.cc \
src/dcomplex.cc \
templates/Array.cc \
templates/CachedArray.cc \
templates/Dictionary.cc \
templates/Matrix.cc \
templates/MatrixSupport.cc \
templates/Pool.cc \
templates/SimpleArray.cc \
templates/ValueMap.cc \
templates/miscTemplateFunc.cc \
templates/MatrixConv.cc \
clapack/dcopy.c \
clapack/dgemm.c \
clapack/dgemv.c \
clapack/dger.c \
clapack/dlasyf.c \
clapack/dscal.c \
clapack/dswap.c \
clapack/dsyr.c \
clapack/dsysv.c \
clapack/dsytf2.c \
clapack/dsytrf.c \
clapack/dsytrs.c \
clapack/idamax.c \
clapack/ieeeck.c \
clapack/ilaenv.c \
clapack/lsame.c \
clapack/s_cmp.c \
clapack/s_copy.c \
clapack/xerbla.c
m4_files = m4/mni_REQUIRE_LIB.m4 \
m4/mni_REQUIRE_MNILIBS.m4 \
m4/mni_REQUIRE_OPENINVENTOR.m4 \
m4/mni_cxx_have_koenig_lookup.m4 \
m4/smr_CGAL_MAKEFILE.m4 \
m4/smr_OPTIONAL_LIB.m4 \
m4/smr_REQUIRED_LIB.m4 \
m4/smr_WITH_BUILD_PATH.m4