new Section package and start doc pages and build scripts
This commit is contained in:
82
lib/h5md/Install.py
Normal file
82
lib/h5md/Install.py
Normal file
@ -0,0 +1,82 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# install.py tool to do a generic build of a library
|
||||
# soft linked to by many of the lib/Install.py files
|
||||
# used to automate the steps described in the corresponding lib/README
|
||||
|
||||
import sys,commands,os
|
||||
|
||||
# help message
|
||||
|
||||
help = """
|
||||
Syntax: python Install.py -m machine -e suffix
|
||||
specify -m and optionally -e, order does not matter
|
||||
-m = peform a clean followed by "make -f Makefile.machine"
|
||||
machine = suffix of a lib/Makefile.* file
|
||||
-e = set EXTRAMAKE variable in Makefile.machine to Makefile.lammps.suffix
|
||||
does not alter existing Makefile.machine
|
||||
"""
|
||||
|
||||
# print error message or help
|
||||
|
||||
def error(str=None):
|
||||
if not str: print help
|
||||
else: print "ERROR",str
|
||||
sys.exit()
|
||||
|
||||
# parse args
|
||||
|
||||
args = sys.argv[1:]
|
||||
nargs = len(args)
|
||||
if nargs == 0: error()
|
||||
|
||||
machine = None
|
||||
extraflag = 0
|
||||
|
||||
iarg = 0
|
||||
while iarg < nargs:
|
||||
if args[iarg] == "-m":
|
||||
if iarg+2 > nargs: error()
|
||||
machine = args[iarg+1]
|
||||
iarg += 2
|
||||
elif args[iarg] == "-e":
|
||||
if iarg+2 > nargs: error()
|
||||
extraflag = 1
|
||||
suffix = args[iarg+1]
|
||||
iarg += 2
|
||||
else: error()
|
||||
|
||||
# set lib from working dir
|
||||
|
||||
cwd = os.getcwd()
|
||||
lib = os.path.basename(cwd)
|
||||
|
||||
# create Makefile.auto as copy of Makefile.machine
|
||||
# reset EXTRAMAKE if requested
|
||||
|
||||
if not os.path.exists("Makefile.%s" % machine):
|
||||
error("lib/%s/Makefile.%s does not exist" % (lib,machine))
|
||||
|
||||
lines = open("Makefile.%s" % machine,'r').readlines()
|
||||
fp = open("Makefile.auto",'w')
|
||||
|
||||
for line in lines:
|
||||
words = line.split()
|
||||
if len(words) == 3 and extraflag and \
|
||||
words[0] == "EXTRAMAKE" and words[1] == '=':
|
||||
line = line.replace(words[2],"Makefile.lammps.%s" % suffix)
|
||||
print >>fp,line,
|
||||
|
||||
fp.close()
|
||||
|
||||
# make the library via Makefile.auto
|
||||
|
||||
print "Building lib%s.a ..." % lib
|
||||
cmd = "make -f Makefile.auto clean; make -f Makefile.auto"
|
||||
txt = commands.getoutput(cmd)
|
||||
print txt
|
||||
|
||||
if os.path.exists("lib%s.a" % lib): print "Build was successful"
|
||||
else: error("Build of lib/%s/lib%s.a was NOT successful" % (lib,lib))
|
||||
if not os.path.exists("Makefile.lammps"):
|
||||
print "lib/%s/Makefile.lammps was NOT created" % lib
|
||||
@ -19,7 +19,7 @@ build/ch5md.o: src/ch5md.c | build
|
||||
$(CC) $(INC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
Makefile.lammps:
|
||||
cp Makefile.lammps.empty $@
|
||||
cp $(EXTRAMAKE) $@
|
||||
|
||||
.PHONY: all lib clean
|
||||
|
||||
@ -3,6 +3,11 @@ LAMMPS under its own BSD license; see below. This library is used
|
||||
when the USER-H5MD package is included in a LAMMPS build and the dump
|
||||
h5md command is invoked in a LAMMPS input script.
|
||||
|
||||
You can type "make lib-h5md" from the src directory to see help on how
|
||||
to build this library via make commands, or you can do the same thing
|
||||
by typing "python Install.py" from within this directory, or you can
|
||||
do it manually by following the instructions below.
|
||||
|
||||
---------------------
|
||||
|
||||
ch5md : Read and write H5MD files in C
|
||||
@ -17,8 +22,14 @@ molecular data, whose development is found at <http://nongnu.org/h5md/>.
|
||||
ch5md is developped by Pierre de Buyl and is released under the 3-clause BSD
|
||||
license that can be found in the file LICENSE.
|
||||
|
||||
To use the h5md dump style in lammps, execute make in this directory then 'make
|
||||
yes-user-h5md' in the src directory of lammps. Rebuild lammps.
|
||||
To use the h5md dump style in lammps, execute
|
||||
make -f Makefile.h5cc
|
||||
in this directory then
|
||||
make yes-user-h5md
|
||||
in the src directory of LAMMPS to rebuild LAMMPS.
|
||||
|
||||
Note that you must have the h5cc compiler installed to use
|
||||
Makefile.h5cc. It should be part
|
||||
|
||||
If HDF5 is not in a standard system location, edit Makefile.lammps accordingly.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user