19 lines
307 B
Bash
Executable File
19 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../lib/libem.bash"
|
|
|
|
function em.configure() {
|
|
"${EM_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
--enable-shared \
|
|
--enable-cxx \
|
|
--enable-unsupported \
|
|
--with-pic \
|
|
|| exit 1
|
|
}
|
|
|
|
em.add_to_family 'Compiler'
|
|
em.set_build_dependencies "${COMPILER}"
|
|
em.make_all
|
|
|