ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Makefile.in
Revision: 1261
Committed: Wed Jun 18 17:03:30 2008 UTC (17 years, 1 month ago) by chuckv
Original Path: trunk/src/math/Makefile.in
File size: 610 byte(s)
Log Message:
Added files to module section of Makefile.

File Contents

# User Rev Content
1 chuckv 1187 Package = math
2    
3     MySource = \
4 cpuglis 1195 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 chuckv 1187
14 chuckv 1261 Modules= \
15     linearAlgebra
16    
17    
18 chuckv 1187 USE_CGAL = @USE_CGAL@
19 chuckv 1199 USE_QHULL = @USE_QHULL@
20 chuckv 1187
21     ifeq "$(USE_CGAL)" "yes"
22 chuckv 1199 Source = $(MySource) AlphaShape.cpp
23 chuckv 1187 else
24 chuckv 1203 ifeq "$(USE_QHULL)" "yes"
25 chuckv 1199 Source = $(MySource) ConvexHull.cpp
26 chuckv 1203 else
27 chuckv 1199 Source = $(MySource)
28 chuckv 1203 endif
29 chuckv 1199 endif
30 chuckv 1187
31 gezelter 1225 ParallelSource = \
32     ParallelRandNumGen.cpp
33 chuckv 1203
34 chuckv 1187 RmiSource =
35    
36     Main =
37    
38     DEV_ROOT=../..
39     include $(DEV_ROOT)/make/Makefile
40