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

File Contents

# User Rev Content
1 chuckv 1187 Package = math
2    
3     MySource = \
4 cpuglis 1195 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 1187
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