ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/integrators/Makefile.in
Revision: 3554
Committed: Thu Oct 22 14:16:25 2009 UTC (15 years, 10 months ago) by gezelter
File size: 602 byte(s)
Log Message:
Removing CGAL from all code

File Contents

# User Rev Content
1 skuang 3454 Package = integrators
2    
3 chuckv 3458 MySource = \
4 skuang 3454 Integrator.cpp \
5     IntegratorFactory.cpp \
6     Velocitizer.cpp \
7 gezelter 3488 RNEMD.cpp \
8 skuang 3454 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_QHULL = @USE_QHULL@
23    
24 gezelter 3554 ifeq "$(USE_QHULL)" "yes"
25 skuang 3454 Source = $(MySource) SMIPDForceManager.cpp SMIPDynamics.cpp
26     else
27     Source = $(MySource)
28     endif
29    
30    
31     ParallelSource = \
32     Velocitizer.cpp
33    
34     RmiSource =
35    
36     Main =
37    
38     DEV_ROOT=../..
39     include $(DEV_ROOT)/make/Makefile
40