ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/integrators/Makefile.in
Revision: 1329
Committed: Sat Mar 14 01:23:53 2009 UTC (16 years, 4 months ago) by gezelter
Original Path: trunk/src/integrators/Makefile.in
File size: 731 byte(s)
Log Message:
Adding RNEMD

File Contents

# User Rev Content
1 skuang 1297 Package = integrators
2    
3 chuckv 1301 MySource = \
4 skuang 1297 Integrator.cpp \
5     IntegratorFactory.cpp \
6     Velocitizer.cpp \
7 gezelter 1329 RNEMD.cpp \
8 skuang 1297 VelocityVerletIntegrator.cpp \
9     DLM.cpp \
10     NVE.cpp \
11     NVT.cpp \
12     NPT.cpp \
13     NPTi.cpp \
14     NPTf.cpp \
15     NPTxyz.cpp \
16     NPAT.cpp \
17     NPrT.cpp \
18     NgammaT.cpp \
19     LDForceManager.cpp \
20     LangevinDynamics.cpp
21    
22     USE_CGAL = @USE_CGAL@
23     USE_QHULL = @USE_QHULL@
24    
25     ifeq "$(USE_CGAL)" "yes"
26     Source = $(MySource) SMIPDForceManager.cpp SMIPDynamics.cpp
27     else
28     ifeq "$(USE_QHULL)" "yes"
29     Source = $(MySource) SMIPDForceManager.cpp SMIPDynamics.cpp
30     else
31     Source = $(MySource)
32     endif
33     endif
34    
35    
36     ParallelSource = \
37     Velocitizer.cpp
38    
39     RmiSource =
40    
41     Main =
42    
43     DEV_ROOT=../..
44     include $(DEV_ROOT)/make/Makefile
45