Revision: | 1297 |
Committed: | Fri Sep 26 18:54:04 2008 UTC (16 years, 10 months ago) by skuang |
Original Path: | trunk/src/integrators/Makefile.in |
File size: | 716 byte(s) |
Log Message: | Only build SMIPDynamics and register it if we have qhull |
# | User | Rev | Content |
---|---|---|---|
1 | skuang | 1297 | 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 |