ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Makefile.in
Revision: 1316
Committed: Fri Nov 14 15:44:34 2008 UTC (16 years, 8 months ago) by chuckv
Original Path: trunk/src/math/Makefile.in
File size: 636 byte(s)
Log Message:
More attempts to get SMIPD to themostat properly

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 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) ConvexHull.cpp Triangle.cpp
23 else
24 ifeq "$(USE_QHULL)" "yes"
25 Source = $(MySource) ConvexHull.cpp Triangle.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