ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/math/Makefile.in
Revision: 3086
Committed: Tue Dec 19 15:45:03 2006 UTC (17 years, 6 months ago) by gezelter
File size: 561 byte(s)
Log Message:
fixed a configuration error

File Contents

# Content
1 Package = math
2
3 MySource = \
4 ParallelRandNumGen.cpp \
5 SeqRandNumGen.cpp \
6 RealSphericalHarmonic.cpp \
7 SphericalHarmonic.cpp \
8 ChebyshevPolynomials.cpp \
9 LegendrePolynomial.cpp \
10 linearAlgebra.F90 \
11 Wigner3jm.F90
12
13 USE_CGAL = @USE_CGAL@
14
15 ifeq "$(USE_CGAL)" "yes"
16 Source = $(MySource) ConvexHull.cpp
17 else
18 Source = $(MySource)
19 endif
20
21 RmiSource =
22
23 Main =
24
25 DEV_ROOT=../..
26 include $(DEV_ROOT)/make/Makefile
27