ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/math/Makefile
Revision: 1097
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.

File Contents

# User Rev Content
1 gezelter 267 Package = math
2    
3 chuckv 1097 MySource = \
4 chrisfen 514 ParallelRandNumGen.cpp \
5 tim 749 SeqRandNumGen.cpp \
6     RealSphericalHarmonic.cpp \
7 gezelter 1042 SphericalHarmonic.cpp \
8 tim 876 ChebyshevPolynomials.cpp \
9 gezelter 889 LegendrePolynomial.cpp \
10 chuckv 991 linearAlgebra.F90 \
11     Wigner3jm.F90
12 chuckv 1097 USE_CGAL = yes
13 gezelter 889
14 chuckv 1097 ifeq "$(USE_CGAL)" "yes"
15     Source = $(MySource) ConvexHull.cpp
16     else
17     Source = $(MySource)
18     endif
19    
20 gezelter 2 RmiSource =
21    
22     Main =
23    
24 tim 24 DEV_ROOT=../..
25     include $(DEV_ROOT)/make/Makefile
26