ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/devel_omp/src/applications/atom2md/Makefile.in
Revision: 1210
Committed: Wed Jan 23 03:45:33 2008 UTC (17 years, 6 months ago) by gezelter
Original Path: trunk/src/applications/atom2md/Makefile.in
File size: 361 byte(s)
Log Message:
Removed older version of openbabel from our code.  We now have a
configure check to see if openbabel is installed and then we link to
the stuff we need.  Conversion to OOPSE's md format is handled by only
one application (atom2md), so most of the work went on there.
ElementsTable still needs some work to function in parallel.

File Contents

# User Rev Content
1 gezelter 1210 Package = applications/atom2md
2    
3     MySource = \
4     oopseformat.cpp \
5     obmolecformat.cpp \
6     atom2md.cpp \
7    
8     MyMain =atom2md
9    
10     USE_OPENBABEL=@USE_OPENBABEL@
11    
12     ifeq "$(USE_OPENBABEL)" "yes"
13     Source = $(MySource)
14     Main = $(MyMain)
15     else
16     Source =
17     Main =
18     endif
19    
20     BuiltParallelExe = 0
21    
22     RmiSource =
23    
24     DEV_ROOT=../../..
25     include $(DEV_ROOT)/make/Makefile