ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/math/Makefile
Revision: 3083
Committed: Thu Dec 14 19:32:32 2006 UTC (17 years, 6 months ago) by chuckv
File size: 553 byte(s)
Log Message:
Added preliminary support for CGAL and computation of convex hull.

File Contents

# 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