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