ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Makefile.in
Revision: 1187
Committed: Thu Nov 15 20:42:47 2007 UTC (17 years, 8 months ago) by chuckv
Original Path: trunk/src/math/Makefile.in
File size: 528 byte(s)
Log Message:
Changes to Build system.

File Contents

# User Rev Content
1 chuckv 1187 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    
14     USE_CGAL = @USE_CGAL@
15    
16     ifeq "$(USE_CGAL)" "yes"
17     Source = $(MySource) ConvexHull.cpp AlphaShape.cpp
18     else
19     Source = $(MySource)
20     endif
21    
22    
23    
24     RmiSource =
25    
26     Main =
27    
28     DEV_ROOT=../..
29     include $(DEV_ROOT)/make/Makefile
30