ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Makefile.in
Revision: 1380
Committed: Thu Oct 22 14:15:09 2009 UTC (15 years, 9 months ago) by gezelter
Original Path: trunk/src/math/Makefile.in
File size: 529 byte(s)
Log Message:
Removing CGAL dependence

File Contents

# 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 RMSD.cpp \
12 linearAlgebra.F90 \
13 Wigner3jm.F90
14
15 Modules= \
16 linearAlgebra
17
18 USE_QHULL = @USE_QHULL@
19
20 ifeq "$(USE_QHULL)" "yes"
21 Source = $(MySource) ConvexHull.cpp Triangle.cpp
22 else
23 Source = $(MySource)
24 endif
25
26 ParallelSource = \
27 ParallelRandNumGen.cpp
28
29 RmiSource =
30
31 Main =
32
33 DEV_ROOT=../..
34 include $(DEV_ROOT)/make/Makefile
35