Revision: | 1349 |
Committed: | Wed May 20 19:35:05 2009 UTC (16 years, 2 months ago) by cli2 |
Original Path: | trunk/src/math/Makefile.in |
File size: | 648 byte(s) |
Log Message: | Modifications to support RMSD calculations, removing classes we aren't using. |
# | Content |
---|---|
1 | Package = math |
2 | |
3 | MySource = \ |
4 | ParallelRandNumGen.cpp \ |
5 | SeqRandNumGen.cpp \ |
6 | RealSphericalHarmonic.cpp \ |
7 | SphericalHarmonic.cpp \ |
8 | ChebyshevT.cpp \ |
9 | ChebyshevU.cpp \ |
10 | LegendrePolynomial.cpp \ |
11 | RMSD.cpp \ |
12 | linearAlgebra.F90 \ |
13 | Wigner3jm.F90 |
14 | |
15 | Modules= \ |
16 | linearAlgebra |
17 | |
18 | |
19 | USE_CGAL = @USE_CGAL@ |
20 | USE_QHULL = @USE_QHULL@ |
21 | |
22 | ifeq "$(USE_CGAL)" "yes" |
23 | Source = $(MySource) ConvexHull.cpp Triangle.cpp |
24 | else |
25 | ifeq "$(USE_QHULL)" "yes" |
26 | Source = $(MySource) ConvexHull.cpp Triangle.cpp |
27 | else |
28 | Source = $(MySource) |
29 | endif |
30 | endif |
31 | |
32 | ParallelSource = \ |
33 | ParallelRandNumGen.cpp |
34 | |
35 | RmiSource = |
36 | |
37 | Main = |
38 | |
39 | DEV_ROOT=../.. |
40 | include $(DEV_ROOT)/make/Makefile |
41 |