ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Makefile.in
Revision: 1199
Committed: Thu Dec 6 20:40:38 2007 UTC (17 years, 7 months ago) by chuckv
Original Path: trunk/src/math/Makefile.in
File size: 553 byte(s)
Log Message:
Check CGAL and qhull defines

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     USE_CGAL = @USE_CGAL@
15 chuckv 1199 USE_QHULL = @USE_QHULL@
16 chuckv 1187
17     ifeq "$(USE_CGAL)" "yes"
18 chuckv 1199 Source = $(MySource) AlphaShape.cpp
19 chuckv 1187 else
20     Source = $(MySource)
21     endif
22    
23 chuckv 1199 ifeq "$(USE_QHULL)" "yes"
24     Source = $(MySource) ConvexHull.cpp
25     else
26     Source = $(MySource)
27     endif
28 chuckv 1187
29     RmiSource =
30    
31     Main =
32    
33     DEV_ROOT=../..
34     include $(DEV_ROOT)/make/Makefile
35