scripts/MPI/cpmd: added

This commit is contained in:
2015-06-04 18:40:35 +02:00
parent 7c878cfd32
commit 5218a2ce78
3 changed files with 4140 additions and 0 deletions

4114
scripts/MPI/cpmd/Makefile Normal file

File diff suppressed because it is too large Load Diff

19
scripts/MPI/cpmd/build Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
source "$(dirname $0)/../../../lib/libem.bash"
em.configure() {
cp "${BUILDSCRIPT_DIR}/Makefile" "${MODULE_BUILDDIR}" || exit 1
cp "${MODULE_SRCDIR}/irat.inc" "${MODULE_BUILDDIR}" || exit 1
}
em.install() {
mkdir -p "${PREFIX}/bin"
cp "${MODULE_BUILDDIR}/cpmd.x" "${PREFIX}/bin"
}
em.add_to_group 'MPI'
em.set_runtime_dependencies "${COMPILER}" "${MPI}"
em.set_build_dependencies "${COMPILER}" "${MPI}"
em.make_all

View File

@@ -0,0 +1,7 @@
C hello emacs, this is -*- fortran -*-
C ==================================================================
C == 64/(NUMBER OF BITS PER INTEGER) ==
C ==================================================================
INTEGER IRAT
PARAMETER(IRAT=2)
C ==================================================================