From 88ed7b8d8aad16374cb5ed7ae119c17202e85b1a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 28 May 2015 13:03:55 +0200 Subject: [PATCH] scripts/Compiler/atlas/build: - added --- scripts/Compiler/atlas/build | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 scripts/Compiler/atlas/build diff --git a/scripts/Compiler/atlas/build b/scripts/Compiler/atlas/build new file mode 100755 index 0000000..33e7b00 --- /dev/null +++ b/scripts/Compiler/atlas/build @@ -0,0 +1,20 @@ +#!/bin/bash + +source "$(dirname $0)/../../../lib/libem.bash" + +function em.configure() { + "${MODULE_SRCDIR}"/configure \ + --prefix="${PREFIX}" \ + || exit 1 +} + +em.add_to_family 'Compiler' +em.set_runtime_dependencies "${COMPILER}" +em.set_build_dependencies "${COMPILER}" +em.make_all + +# Local Variables: +# mode: sh +# sh-basic-offset: 8 +# tab-width: 8 +# End: