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

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