ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/math/Makefile.in
Revision: 3290
Committed: Thu Dec 6 20:40:38 2007 UTC (17 years, 9 months ago) by chuckv
File size: 553 byte(s)
Log Message:
Check CGAL and qhull defines

File Contents

# User Rev Content
1 chuckv 3274 Package = math
2    
3     MySource = \
4 cpuglis 3286 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 3274
14     USE_CGAL = @USE_CGAL@
15 chuckv 3290 USE_QHULL = @USE_QHULL@
16 chuckv 3274
17     ifeq "$(USE_CGAL)" "yes"
18 chuckv 3290 Source = $(MySource) AlphaShape.cpp
19 chuckv 3274 else
20     Source = $(MySource)
21     endif
22    
23 chuckv 3290 ifeq "$(USE_QHULL)" "yes"
24     Source = $(MySource) ConvexHull.cpp
25     else
26     Source = $(MySource)
27     endif
28 chuckv 3274
29     RmiSource =
30    
31     Main =
32    
33     DEV_ROOT=../..
34     include $(DEV_ROOT)/make/Makefile
35