ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/math/Makefile.in
Revision: 3286
Committed: Thu Dec 6 20:04:02 2007 UTC (17 years, 9 months ago) by cpuglis
File size: 447 byte(s)
Log Message:
Many fixes for Charmm-type torsions.

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    
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