Revision: | 3083 |
Committed: | Thu Dec 14 19:32:32 2006 UTC (18 years, 9 months ago) by chuckv |
File size: | 553 byte(s) |
Log Message: | Added preliminary support for CGAL and computation of convex hull. |
# | User | Rev | Content |
---|---|---|---|
1 | gezelter | 1951 | Package = math |
2 | |||
3 | chuckv | 3083 | MySource = \ |
4 | chrisfen | 2211 | ParallelRandNumGen.cpp \ |
5 | tim | 2448 | SeqRandNumGen.cpp \ |
6 | RealSphericalHarmonic.cpp \ | ||
7 | gezelter | 3010 | SphericalHarmonic.cpp \ |
8 | tim | 2576 | ChebyshevPolynomials.cpp \ |
9 | gezelter | 2592 | LegendrePolynomial.cpp \ |
10 | chuckv | 2869 | linearAlgebra.F90 \ |
11 | Wigner3jm.F90 | ||
12 | chuckv | 3083 | USE_CGAL = yes |
13 | gezelter | 2592 | |
14 | chuckv | 3083 | ifeq "$(USE_CGAL)" "yes" |
15 | Source = $(MySource) ConvexHull.cpp | ||
16 | else | ||
17 | Source = $(MySource) | ||
18 | endif | ||
19 | |||
20 | gezelter | 1490 | RmiSource = |
21 | |||
22 | Main = | ||
23 | |||
24 | tim | 1513 | DEV_ROOT=../.. |
25 | include $(DEV_ROOT)/make/Makefile | ||
26 |