ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/integrators/Makefile.in
Revision: 3454
Committed: Fri Sep 26 18:54:04 2008 UTC (15 years, 9 months ago) by skuang
File size: 716 byte(s)
Log Message:
Only build SMIPDynamics and register it if we have qhull

File Contents

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