| Revision: | 1261 |
| Committed: | Wed Jun 18 17:03:30 2008 UTC (17 years, 5 months ago) by chuckv |
| Original Path: | trunk/src/math/Makefile.in |
| File size: | 610 byte(s) |
| Log Message: | Added files to module section of Makefile. |
| # | 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 | Modules= \ |
| 15 | linearAlgebra |
| 16 | |
| 17 | |
| 18 | USE_CGAL = @USE_CGAL@ |
| 19 | USE_QHULL = @USE_QHULL@ |
| 20 | |
| 21 | ifeq "$(USE_CGAL)" "yes" |
| 22 | Source = $(MySource) AlphaShape.cpp |
| 23 | else |
| 24 | ifeq "$(USE_QHULL)" "yes" |
| 25 | Source = $(MySource) ConvexHull.cpp |
| 26 | else |
| 27 | Source = $(MySource) |
| 28 | endif |
| 29 | endif |
| 30 | |
| 31 | ParallelSource = \ |
| 32 | ParallelRandNumGen.cpp |
| 33 | |
| 34 | RmiSource = |
| 35 | |
| 36 | Main = |
| 37 | |
| 38 | DEV_ROOT=../.. |
| 39 | include $(DEV_ROOT)/make/Makefile |
| 40 |