17 lines
291 B
Bash
Executable File
17 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../../../lib/libem.bash"
|
|
|
|
function em.configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
# use system gcc to compile
|
|
#declare -rx CC=gcc
|
|
|
|
em.set_build_dependencies "${COMPILER}"
|
|
em.add_to_family 'Programming'
|
|
em.make_all
|