1 ## Makefile.am
2
3 include $(top_srcdir)/config/config
4
5 includedir = @includedir@/tina/math
6
7 lib_LTLIBRARIES = libtinaMath.la
8
9 libtinaMath_la_LDFLAGS = -avoid-version -release @PACKAGE_VERSION@
10
11 libtinaMath_la_SOURCES = \
12 mathDraw_bresline.c\
13 mathDraw_polygon.c\
14 mathDraw_symmline.c\
15 mathGeom_geom2.c\
16 mathGeom_geom3.c\
17 mathGeom_hull2.c\
18 mathGeom_hull3.c\
19 mathGeom_ipos.c\
20 mathGeom_mat2.c\
21 mathGeom_mat3.c\
22 mathGeom_mat4.c\
23 mathGeom_proj2.c\
24 mathGeom_proj3.c\
25 mathGeom_vec2.c\
26 mathGeom_vec3.c\
27 mathGeom_vec4.c\
28 mathMatr_fmt2.c\
29 mathMatr_add.c\
30 mathMatr_alloc.c\
31 mathMatr_build.c\
32 mathMatr_cast.c\
33 mathMatr_check.c\
34 mathMatr_copy.c\
35 mathMatr_fill.c\
36 mathMatr_fmt.c\
37 mathMatr_free.c\
38 mathMatr_get.c\
39 mathMatr_invert.c\
40 mathMatr_invsd.c\
41 mathMatr_io.c\
42 mathMatr_itimes.c\
43 mathMatr_mat2.c\
44 mathMatr_mat3.c\
45 mathMatr_minus.c\
46 mathMatr_mult.c\
47 mathMatr_prod.c\
48 mathMatr_put.c\
49 mathMatr_sub.c\
50 mathMatr_svd.c\
51 mathMatr_tensor.c\
52 mathMatr_times.c\
53 mathMatr_transp.c\
54 mathMatr_trnsf2.c\
55 mathMatr_trnsf3.c\
56 mathMatr_unit.c\
57 mathMatr_util.c\
58 mathMatr_vprod.c\
59 mathMatv_chol.c\
60 mathMatv_eigen.c\
61 mathMatv_gs.c\
62 mathMatv_invert.c\
63 mathMatv_ivec.c\
64 mathMatv_lu.c\
65 mathMatv_mat.c\
66 mathMatv_svd.c\
67 mathMatv_vec.c\
68 mathNum_cholesky.c\
69 mathNum_dprog.c\
70 mathNum_eigen.c\
71 mathNum_eqn.c\
72 mathNum_fourier.c\
73 mathNum_genalg.c\
74 mathNum_genalgio.c\
75 mathNum_newtraph.c\
76 mathNum_pentadiag.c\
77 mathNum_simplexmin.c\
78 mathNum_solve.c\
79 mathNum_svd.c\
80 mathNum_univmin.c\
81 mathSpl_bspline.c\
82 mathSpl_ics.c\
83 mathSpl_spline.c\
84 mathSpl_spline2.c\
85 mathStat_covar.c\
86 mathTran_euler.c\
87 mathTran_quat.c\
88 mathTran_rot2.c\
89 mathTran_rot3.c\
90 mathTran_transform2.c\
91 mathTran_transform3.c\
92 mathTyp_cmplx.c\
93 mathTyp_int.c\
94 mathUtil_hist.c\
95 mathUtil_hyper.c\
96 mathUtil_math.c\
97 mathUtil_rand.c\
98 mathVec_apply.c\
99 mathVec_combine.c\
100 mathVec_fmt.c\
101 mathVec_geom.c\
102 mathVec_get.c\
103 mathVec_max.c\
104 mathVec_set.c\
105 mathVec_vector.c \
106 $(include_HEADERS)
107
108 include_HEADERS = mathDef.h mathDraw_bresline.h \
109 mathDraw_polygon.h mathDraw_symmline.h mathGeom_geom2.h \
110 mathGeom_geom3.h mathGeom_hull2.h mathGeom_hull3.h mathGeom_ipos.h \
111 mathGeom_mat2.h mathGeom_mat3.h mathGeom_mat4.h mathGeom_proj2.h \
112 mathGeom_proj3.h mathGeom_vec2.h mathGeom_vec3.h mathGeom_vec4.h \
113 mathMatr_fmt2.h mathMatr_add.h mathMatr_alloc.h mathMatr_build.h \
114 mathMatr_cast.h mathMatr_check.h mathMatr_copy.h mathMatr_fill.h \
115 mathMatr_fmt.h mathMatr_free.h mathMatr_get.h mathMatr_invert.h \
116 mathMatr_invsd.h mathMatr_io.h mathMatr_itimes.h mathMatr_mat2.h \
117 mathMatr_mat3.h mathMatr_minus.h mathMatr_mult.h mathMatr_prod.h \
118 mathMatr_put.h mathMatr_sub.h mathMatr_svd.h mathMatr_tensor.h \
119 mathMatr_times.h mathMatr_transp.h mathMatr_trnsf2.h mathMatr_trnsf3.h \
120 mathMatr_unit.h mathMatr_util.h mathMatr_vprod.h mathMatv_chol.h \
121 mathMatv_eigen.h mathMatv_gs.h mathMatv_invert.h mathMatv_ivec.h \
122 mathMatv_lu.h mathMatv_mat.h mathMatv_svd.h mathMatv_vec.h \
123 mathNum_cholesky.h mathNum_dprog.h mathNum_eigen.h mathNum_eqn.h \
124 mathNum_fourier.h mathNum_genalg.h mathNum_genalgio.h \
125 mathNum_newtraph.h mathNum_pentadiag.h mathNum_simplexmin.h \
126 mathNum_solve.h mathNum_svd.h mathNum_univmin.h mathPro.h \
127 mathSpl_bspline.h mathSpl_ics.h mathSpl_spline.h mathSpl_spline2.h \
128 mathStat_covar.h mathTran_euler.h mathTran_quat.h mathTran_rot2.h \
129 mathTran_rot3.h mathTran_transform2.h mathTran_transform3.h \
130 mathTyp_cmplx.h mathTyp_int.h mathUtil_hist.h mathUtil_hyper.h \
131 mathUtil_math.h mathUtil_rand.h mathVec_apply.h mathVec_combine.h \
132 mathVec_fmt.h mathVec_geom.h mathVec_get.h mathVec_max.h mathVec_set.h \
133 mathVec_vector.h math_DrawDef.h math_DrawPro.h math_GenDef.h \
134 math_GeomDef.h math_GeomPro.h math_MatrDef.h math_MatrPro.h \
135 math_MatvDef.h math_MatvPro.h math_NumDef.h math_NumPro.h \
136 math_SplDef.h math_SplPro.h math_StatDef.h math_StatPro.h \
137 math_TranDef.h math_TranPro.h math_TypDef.h math_TypPro.h \
138 math_UtilDef.h math_UtilPro.h math_VecDef.h math_VecPro.h
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.