Revision: | 1225 |
Committed: | Fri Feb 8 21:33:46 2008 UTC (17 years, 5 months ago) by gezelter |
Original Path: | trunk/src/math/Makefile.in |
File size: | 582 byte(s) |
Log Message: | updating configure process |
# | 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 | linearAlgebra.F90 \ |
12 | Wigner3jm.F90 |
13 | |
14 | USE_CGAL = @USE_CGAL@ |
15 | USE_QHULL = @USE_QHULL@ |
16 | |
17 | ifeq "$(USE_CGAL)" "yes" |
18 | Source = $(MySource) AlphaShape.cpp |
19 | else |
20 | ifeq "$(USE_QHULL)" "yes" |
21 | Source = $(MySource) ConvexHull.cpp |
22 | else |
23 | Source = $(MySource) |
24 | endif |
25 | endif |
26 | |
27 | ParallelSource = \ |
28 | ParallelRandNumGen.cpp |
29 | |
30 | RmiSource = |
31 | |
32 | Main = |
33 | |
34 | DEV_ROOT=../.. |
35 | include $(DEV_ROOT)/make/Makefile |
36 |